diff options
| author | Mitch Riedstra <Mitch@riedstra.us> | 2017-11-02 16:03:14 -0400 |
|---|---|---|
| committer | Mitch Riedstra <Mitch@riedstra.us> | 2017-11-02 16:03:14 -0400 |
| commit | e16fa08b915562c6ab77ce7bb79a9d766b5a4036 (patch) | |
| tree | 2f7d518131600f2db7bc3ac0545f11f2571c2aee /app/dispatchAuth/apps.py | |
| parent | e4d865b1a61f6a72551e70abad78c6c35b9345e7 (diff) | |
| download | dispatch-tracker-e16fa08b915562c6ab77ce7bb79a9d766b5a4036.tar.gz dispatch-tracker-e16fa08b915562c6ab77ce7bb79a9d766b5a4036.tar.xz | |
Initial setup to use a custom User model, I still need to figure out how to use the built in Django permissions though
Diffstat (limited to 'app/dispatchAuth/apps.py')
| -rw-r--r-- | app/dispatchAuth/apps.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/dispatchAuth/apps.py b/app/dispatchAuth/apps.py new file mode 100644 index 0000000..ba984ef --- /dev/null +++ b/app/dispatchAuth/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class DispatchauthConfig(AppConfig): + name = 'dispatchAuth' |
