mirror of
https://github.com/MarcZierle/photo-log-backend.git
synced 2025-09-13 10:14:17 +00:00
8 lines
194 B
Python
Executable File
8 lines
194 B
Python
Executable File
from django.contrib import admin
|
|
from django.contrib.auth.admin import UserAdmin
|
|
from accounts.models import CustomUser
|
|
|
|
# Register your models here.
|
|
|
|
admin.site.register(CustomUser, UserAdmin)
|