mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-20 05:19:38 +02:00
9 lines
247 B
Python
9 lines
247 B
Python
|
from django.contrib import admin
|
||
|
from allauth.account.decorators import secure_admin_login
|
||
|
|
||
|
from .models import ImmichIntegration
|
||
|
|
||
|
admin.autodiscover()
|
||
|
admin.site.login = secure_admin_login(admin.site.login)
|
||
|
|
||
|
admin.site.register(ImmichIntegration)
|