The restructuring of the application leads to: * Using the default Django User model * A simpler OAuth solution * A simpler ClientToken auth for data submission * More explicit and modular apps
6 lines
85 B
Python
6 lines
85 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class OauthConfig(AppConfig):
|
|
name = 'oauth'
|