Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Add fxa_id to subscriber admin.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmac committed Sep 15, 2014
1 parent 0f804ff commit 9738252
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions news/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ class APIUserAdmin(admin.ModelAdmin):


class SubscriberAdmin(admin.ModelAdmin):
fields = ('email', 'token')
list_display = ('email', 'token')
search_fields = ('email', 'token')
fields = ('email', 'token', 'fxa_id')
list_display = ('email', 'token', 'fxa_id')
search_fields = ('email', 'token', 'fxa_id')


admin.site.register(Subscriber, SubscriberAdmin)
Expand Down

0 comments on commit 9738252

Please sign in to comment.