django-orchestra-test/orchestra/contrib/webapps/apps.py

14 lines
329 B
Python
Raw Normal View History

2015-05-04 19:52:53 +00:00
from django.apps import AppConfig
from orchestra.core import services
class WebAppsConfig(AppConfig):
name = 'orchestra.contrib.webapps'
verbose_name = 'Webapps'
def ready(self):
from . import signals
from .models import WebApp
services.register(WebApp, icon='Applications-other.png')