mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-22 09:26:35 +03:00
8 lines
133 B
Python
8 lines
133 B
Python
from django.contrib import admin
|
|
from django.contrib.auth import get_user_model
|
|
|
|
User = get_user_model()
|
|
|
|
|
|
admin.site.register(User)
|