Skip to content

Commit

Permalink
Added rooms, end_time, and status to JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhull committed Nov 21, 2010
1 parent 9f06c39 commit 76eb52b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def to_ical(self):
def to_dict(self, summarize=False):
d = dict()
if summarize:
props = ['member', 'start_time', 'name', 'type', 'estimated_size']
props = ['member', 'start_time', 'name', 'type', 'estimated_size', 'end_time', 'rooms', 'status']
else:
props = Event.properties().keys()
for prop in props:
Expand Down

0 comments on commit 76eb52b

Please sign in to comment.