Add app to server Mayan EDMS using tornado.
This commit is contained in:
13
mayan/apps/server/apps.py
Normal file
13
mayan/apps/server/apps.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from __future__ import absolute_import, unicode_literals
|
||||
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
from common import MayanAppConfig
|
||||
|
||||
|
||||
class ServerApp(MayanAppConfig):
|
||||
name = 'server'
|
||||
verbose_name = _('Server')
|
||||
|
||||
def ready(self):
|
||||
super(ServerApp, self).ready()
|
||||
Reference in New Issue
Block a user