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
133 B
Python
6 lines
133 B
Python
from django.contrib import admin
|
|
from . import models
|
|
|
|
admin.site.register(models.Benchmark)
|
|
admin.site.register(models.ClientToken)
|