diff options
| author | Bobby <[email protected]> | 2022-09-05 21:20:17 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-09-05 21:20:17 -0400 |
| commit | a936749708df2b0d6ea200f31992bb61df8442ef (patch) | |
| tree | 10b13d883ac397e4cca2a52916bb916c8f34933b /users/admin.py | |
| parent | 454387030dfa28292c9e3bd604736220d09d8cc3 (diff) | |
| download | thatcomputerscientist-a936749708df2b0d6ea200f31992bb61df8442ef.tar.xz thatcomputerscientist-a936749708df2b0d6ea200f31992bb61df8442ef.zip | |
Added Captcha Store to Admin Route
Diffstat (limited to 'users/admin.py')
| -rw-r--r-- | users/admin.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/users/admin.py b/users/admin.py index f5116502..49d40cef 100644 --- a/users/admin.py +++ b/users/admin.py @@ -1,6 +1,7 @@ from django.contrib import admin # Register your models here. -from .models import UserProfile +from .models import UserProfile, CaptchaStore admin.site.register(UserProfile) +admin.site.register(CaptchaStore) |
