16 lines
366 B
Python
16 lines
366 B
Python
""" # lint-amnesty, pylint: disable=django-not-configured
|
|
Defines common methods shared by Teams classes
|
|
"""
|
|
|
|
|
|
from django.conf import settings
|
|
|
|
TEAM_DISCUSSION_CONTEXT = 'standalone'
|
|
|
|
|
|
def is_feature_enabled(course):
|
|
"""
|
|
Returns True if the teams feature is enabled.
|
|
"""
|
|
return settings.FEATURES.get('ENABLE_TEAMS', False) and course.teams_enabled
|