11 lines
241 B
Python
11 lines
241 B
Python
from .options import SoftwareService
|
|
|
|
from .. import settings
|
|
|
|
|
|
class DrupalService(SoftwareService):
|
|
name = 'drupal'
|
|
verbose_name = "Drupal"
|
|
icon = 'orchestra/icons/apps/Drupal.png'
|
|
site_domain = settings.SAAS_MOODLE_DOMAIN
|