Skip to content

Commit

Permalink
Add agenda_note and remote_instructions to agenda.json API. Commit re…
Browse files Browse the repository at this point in the history
…ady for merge. Fixes #2955.

 - Legacy-Id: 17835
  • Loading branch information
pusateri committed May 19, 2020
1 parent a44a80b commit d275a78
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ietf/meeting/views.py
Expand Up @@ -1405,6 +1405,10 @@ def json_agenda(request, num=None ):
sessdict['name'] = asgn.session.historic_group.name
if asgn.session.short:
sessdict['short'] = asgn.session.short
if asgn.session.agenda_note:
sessdict['agenda_note'] = asgn.session.agenda_note
if asgn.session.remote_instructions:
sessdict['remote_instructions'] = asgn.session.remote_instructions
sessdict['start'] = asgn.timeslot.utc_start_time().strftime("%Y-%m-%dT%H:%M:%SZ")
sessdict['duration'] = str(asgn.timeslot.duration)
sessdict['location'] = asgn.room_name
Expand Down

0 comments on commit d275a78

Please sign in to comment.