Files
edx-platform/lms/djangoapps/discussion/exceptions.py
Kyle McCormick cd3bc236eb Make the team discussion thread private
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
2019-10-18 13:06:50 -04:00

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