diff options
| author | Bobby <[email protected]> | 2022-07-20 10:50:33 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-07-20 10:50:33 +0530 |
| commit | 1869eaac8b4708620bf61a5d7dee6ccd73474309 (patch) | |
| tree | 244cdfa581b028c4fec4118c5e1a9cfb215dfde0 /users/apps.py | |
| parent | 09b002e46b69b43ccd9fc1be29c8bf15f7c2e8be (diff) | |
| download | thatcomputerscientist-1869eaac8b4708620bf61a5d7dee6ccd73474309.tar.xz thatcomputerscientist-1869eaac8b4708620bf61a5d7dee6ccd73474309.zip | |
Add users app to control user actions: added login and logout
Diffstat (limited to 'users/apps.py')
| -rw-r--r-- | users/apps.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/users/apps.py b/users/apps.py new file mode 100644 index 00000000..72b14010 --- /dev/null +++ b/users/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class UsersConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'users' |
