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.
This commit is contained in:
Kumi 2024-07-12 10:58:07 +02:00
parent 083a3a4c7b
commit ed86554e54
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -1,3 +1,6 @@
from django.contrib import admin from django.contrib import admin
# Register your models here. from .models import VPN, Device
admin.site.register(VPN)
admin.site.register(Device)