From ed86554e54a6da4a6b98e0ca6c0271b43c37fdab Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 12 Jul 2024 10:58:07 +0200 Subject: [PATCH] feat(admin): register VPN and Device models Added VPN and Device models to the Django admin site for easier management and interaction through the administrative interface. This change improves the efficiency of handling these models by providing easy access to their data and operations. --- coldbrew/vpn/admin.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/coldbrew/vpn/admin.py b/coldbrew/vpn/admin.py index 8c38f3f..43d5d26 100644 --- a/coldbrew/vpn/admin.py +++ b/coldbrew/vpn/admin.py @@ -1,3 +1,6 @@ from django.contrib import admin -# Register your models here. +from .models import VPN, Device + +admin.site.register(VPN) +admin.site.register(Device)