Skip to content

Commit

Permalink
Add filters to throttled application admin view (#5188)
Browse files Browse the repository at this point in the history
  • Loading branch information
krysal authored Nov 28, 2024
1 parent decc584 commit 9913c49
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions api/api/admin/oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class ThrottledApplicationAdmin(admin.ModelAdmin):

search_fields = ("client_id", "name", "rate_limit_model", "privileges")
list_display = ("client_id", "name", "created", "rate_limit_model", "privileges")
list_filter = ("rate_limit_model", "verified")
ordering = ("-created",)

readonly_fields = (
Expand Down

0 comments on commit 9913c49

Please sign in to comment.