Skip to content

Commit 970ccee

Browse files
outsbartsynasius
authored andcommitted
Added AppConfig
1 parent 4d51503 commit 970ccee

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ Rodney Richardson
1515
Hiroki Kiyohara
1616
Diego Garcia
1717
Bas van Oostveen
18+
Bart Merenda

oauth2_provider/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22

33
__author__ = "Massimiliano Pippi & Federico Frenguelli"
44

5+
default_app_config = 'oauth2_provider.apps.DOTConfig'
6+
57
VERSION = __version__ # synonym

oauth2_provider/apps.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.apps import AppConfig
2+
3+
4+
class DOTConfig(AppConfig):
5+
name = 'oauth2_provider'
6+
verbose_name = "Django OAuth Toolkit"

0 commit comments

Comments
 (0)