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
5 lines
94 B
Python
5 lines
94 B
Python
from django.contrib import admin
|
|
from . import models
|
|
|
|
admin.site.register(models.OAuthToken)
|