mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
* Added SSOUser extension profile for auth * Now checks for Corp membership and executes required commands * Various small fixups
9 lines
226 B
Python
9 lines
226 B
Python
"""
|
|
Admin interface models. Automatically detected by admin.autodiscover().
|
|
"""
|
|
from django.contrib import admin
|
|
from sso.models import Service, ServiceAccount
|
|
|
|
admin.site.register(Service)
|
|
admin.site.register(ServiceAccount)
|