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
108 B
Python
6 lines
108 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class MydataBenchmarksConfig(AppConfig):
|
|
name = 'mydata_benchmarks'
|