forked from mirror/django-mailbox
Add application config
This commit is contained in:
parent
74cba103dd
commit
147c05d74a
2 changed files with 9 additions and 0 deletions
|
|
@ -1 +1,3 @@
|
|||
__version__ = '4.5.4'
|
||||
|
||||
default_app_config = 'django_mailbox.apps.MailBoxConfig'
|
||||
|
|
|
|||
7
django_mailbox/apps.py
Normal file
7
django_mailbox/apps.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from django.apps import AppConfig
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
|
||||
class MailBoxConfig(AppConfig):
|
||||
name = 'django_mailbox'
|
||||
verbose_name = _("Mail Box")
|
||||
Loading…
Add table
Add a link
Reference in a new issue