Develop the capability to allow instructors to designate teams to have private discussions. This way, so non-teammembers cannot view discussion. And the intend is for course teams to manage the team membership as well. MST-10
12 lines
235 B
Python
12 lines
235 B
Python
"""
|
|
Custom exceptions raised by Discussion API.
|
|
"""
|
|
|
|
|
|
class TeamDiscussionHiddenFromUserException(BaseException):
|
|
"""
|
|
This is the exception raised when a user is not
|
|
permitted to view the discussion thread
|
|
"""
|
|
pass
|