Skip to content

Commit

Permalink
added appconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Feb 5, 2018
1 parent b3dea47 commit 0979d58
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -9,3 +9,5 @@ django_invitations.egg-info/
.gitchangelog.rc
.python-version
.coverage
/.idea/

6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,6 +1,12 @@
Changelog
=========

x.x (yyyy-mm-dd)
----------------
(not yet released)

- Added AppConfig.

1.9 (2017-02-11)
----------------

Expand Down
1 change: 1 addition & 0 deletions invitations/__init__.py
@@ -0,0 +1 @@
default_app_config = 'invitations.apps.Config'
8 changes: 8 additions & 0 deletions invitations/apps.py
@@ -0,0 +1,8 @@
from django.apps import AppConfig


class Config(AppConfig):
"""Config."""

name = 'invitations'
label = 'invitations'

0 comments on commit 0979d58

Please sign in to comment.