Skip to content

Commit

Permalink
added schedule details to update notification view
Browse files Browse the repository at this point in the history
  • Loading branch information
anishTP committed Jan 9, 2024
1 parent c258958 commit 2d07512
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions funnel/assets/js/schedule_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,9 @@ const Schedule = {
this.config.slotInterval
);
if (this.config.schedule[session.eventDay]) {
this.config.schedule[session.eventDay].sessions[session.startTime].showLabel =
true;
this.config.schedule[session.eventDay].sessions[
session.startTime
].showLabel = true;
this.config.schedule[session.eventDay].sessions[session.startTime].rooms[
session.room_scoped_name
].talk = session;
Expand Down
4 changes: 2 additions & 2 deletions sample.env
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ FLASK_CACHE_REDIS_URL=redis://${REDIS_HOST}:6379/0
# --- Database configuration
DB_HOST=localhost
# Main app database
FLASK_SQLALCHEMY_DATABASE_URI='postgresql+psycopg:///funnel_test'
FLASK_SQLALCHEMY_DATABASE_URI='postgresql+psycopg:///funnel'
# Geoname database (the use of `__` creates a dict and sets a key in the dict)
FLASK_SQLALCHEMY_BINDS__geoname='postgresql+psycopg:///geoname_testing'
FLASK_SQLALCHEMY_BINDS__geoname='postgresql+psycopg:///geoname'

# --- Email configuration
# SMTP mail server ('localhost' if Postfix is configured as a relay email server)
Expand Down

0 comments on commit 2d07512

Please sign in to comment.