summaryrefslogtreecommitdiffstats
path: root/askbot/deps/django_authopenid/admin.py
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/deps/django_authopenid/admin.py')
-rw-r--r--askbot/deps/django_authopenid/admin.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/askbot/deps/django_authopenid/admin.py b/askbot/deps/django_authopenid/admin.py
new file mode 100644
index 00000000..38bb85c3
--- /dev/null
+++ b/askbot/deps/django_authopenid/admin.py
@@ -0,0 +1,9 @@
+# -*- coding: utf-8 -*-
+
+from django.contrib import admin
+from askbot.deps.django_authopenid.models import UserAssociation
+
+
+class UserAssociationAdmin(admin.ModelAdmin):
+ """User association admin class"""
+admin.site.register(UserAssociation, UserAssociationAdmin) \ No newline at end of file