Add app to server Mayan EDMS using tornado.

This commit is contained in:
Roberto Rosario
2016-03-27 05:00:13 -04:00
parent ccd6e8c88c
commit 94c4df1f5e
6 changed files with 85 additions and 0 deletions

13
mayan/apps/server/apps.py Normal file
View 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()