8 lines
217 B
Python
8 lines
217 B
Python
|
from django.conf import settings
|
||
|
|
||
|
|
||
|
SAAS_ENABLED_SERVICES = getattr(settings, 'SAAS_ENABLED_SERVICES', (
|
||
|
'orchestra.apps.saas.services.bscw.BSCWService',
|
||
|
'orchestra.apps.saas.services.gitlab.GitLabService',
|
||
|
))
|