Files
test-auth/sso/admin.py
Andrew Williams 53630f980f Various changes to several aspects of the model base.
* Added SSOUser extension profile for auth
* Now checks for Corp membership and executes required commands
* Various small fixups
2010-02-25 15:49:56 +00:00

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)