Jan Dittberner
d5bba7a22d
- don't execute celery tasks directly - introduce optional parameters to fileserver tasks to allow chaining - handle user/group/key create and delete tasks in new osusers.signals class - adapt unit tests - change TaskResults model to store the task signatures - generalize the local settings' logging configuration
21 lines
470 B
Python
21 lines
470 B
Python
"""
|
|
This module contains the :py:class:`django.apps.AppConfig` instance for the
|
|
:py:mod:`osusers` app.
|
|
|
|
"""
|
|
from __future__ import unicode_literals
|
|
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
class OsusersAppConfig(AppConfig):
|
|
"""
|
|
AppConfig for the :py:mod:`osusers` app.
|
|
|
|
"""
|
|
name = 'osusers'
|
|
verbose_name = _('Operating System Users and Groups')
|
|
|
|
def ready(self):
|
|
import osusers.signals
|