Skip to content

Commit

Permalink
Update admin.py to add exemptedip
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasBottone authored Nov 4, 2024
1 parent ce590b0 commit 162b148
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion highscores/admin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.contrib import admin
from .models import CleanCodeSubmission, Leaderboard, Score
from .models import CleanCodeSubmission, Leaderboard, Score, ExemptedIP

# Register your models here.

Expand All @@ -20,3 +20,4 @@ class LeaderboardAdmin(admin.ModelAdmin):
admin.site.register(Leaderboard, LeaderboardAdmin)
admin.site.register(Score, ScoreAdmin)
admin.site.register(CleanCodeSubmission)
admin.site.register(ExemptedIP)

0 comments on commit 162b148

Please sign in to comment.