From 721bdb50ee2b6084d27f14ec77c28ad11c987a9f Mon Sep 17 00:00:00 2001 From: devchima Date: Thu, 23 Jan 2025 01:54:40 -0500 Subject: [PATCH] Add turnsecret member model to django admin --- turn_alerts/admin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/turn_alerts/admin.py b/turn_alerts/admin.py index 59cdc37..6f20aa9 100644 --- a/turn_alerts/admin.py +++ b/turn_alerts/admin.py @@ -1,5 +1,6 @@ from django.contrib import admin -from .models import TurnActions +from .models import TurnActions, TurnSecret admin.site.register(TurnActions) +admin.site.register(TurnSecret)