зеркало из https://github.com/mozilla/FlightDeck.git
authentication support for staff
This commit is contained in:
Родитель
e92898f88d
Коммит
731229b132
|
@ -59,3 +59,9 @@ class AMOAuthentication:
|
|||
profile.save()
|
||||
|
||||
return user
|
||||
|
||||
def get_user(self, user_id):
|
||||
try:
|
||||
return User.objects.get(pk=user_id)
|
||||
except:
|
||||
return None
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
from django.contrib import admin
|
||||
|
||||
from models import Profile
|
||||
|
||||
class ProfileAdmin(admin.ModelAdmin):
|
||||
pass
|
||||
admin.site.register(Profile, ProfileAdmin)
|
Загрузка…
Ссылка в новой задаче