add API endpoints and admin views for authentication module

This commit is contained in:
j3d1 2024-01-07 20:46:48 +01:00
parent e5cd901b76
commit ab5e8f36d1
7 changed files with 407 additions and 0 deletions

View file

@ -24,5 +24,6 @@ urlpatterns = [
path('api/1/', include('inventory.api_v1')),
path('api/1/', include('files.api_v1')),
path('api/1/', include('files.media_v1')),
path('api/2/', include('authentication.api_v2')),
path('api/', get_info),
]