schedule/render.py
Needs to hide room from general display unless:
Logged in User is subscribed to a session.
-> Then display that session, and only that session in the room for a given slot.
There needs to be an adhoc session creation form... Currently done in admin UI which is error prone.
-> Need to select users which are subscribed
-> Need to be able to select "private meeting" or not. (there is already a private attribute for a meeting model).
-> Perhaps re-implement BoF support.. (grep for references)
Here are some initial thoughts regarding implementation.
Based in all subscribers having a launchpad account, or ubuntu SSO at the _very least_
schedule/ models/ roommodel. py:
Needs private boolean
schedule/render.py
Needs to hide room from general display unless:
Logged in User is subscribed to a session.
-> Then display that session, and only that session in the room for a given slot.
There needs to be an adhoc session creation form... Currently done in admin UI which is error prone.
-> Need to select users which are subscribed
-> Need to be able to select "private meeting" or not. (there is already a private attribute for a meeting model).
-> Perhaps re-implement BoF support.. (grep for references)