24 lines
723 B
Python
24 lines
723 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.conf import settings
|
|
from django.db.models.signals import post_save
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from mayan.apps.common.apps import MayanAppConfig
|
|
|
|
from .handlers import handler_auto_admin_account_password_change
|
|
|
|
|
|
class AutoAdminAppConfig(MayanAppConfig):
|
|
has_tests = True
|
|
name = 'mayan.apps.autoadmin'
|
|
verbose_name = _('Auto administrator')
|
|
|
|
def ready(self):
|
|
super(AutoAdminAppConfig, self).ready()
|
|
post_save.connect(
|
|
dispatch_uid='auto_admin_handler_account_password_change',
|
|
receiver=handler_auto_admin_account_password_change,
|
|
sender=settings.AUTH_USER_MODEL
|
|
)
|