mpeltriaux
b13e67e061
* adds frontend settings for users to create API tokens on their user settings
17 lines
458 B
Python
17 lines
458 B
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
|
Created on: 21.01.22
|
|
|
|
"""
|
|
from django.urls import path, include
|
|
|
|
from api.views.method_views import generate_new_token_view
|
|
|
|
app_name = "api"
|
|
|
|
urlpatterns = [
|
|
path("v1/", include("api.urls.v1.urls", namespace="v1")),
|
|
path("token/generate", generate_new_token_view, name="generate-new-token"),
|
|
] |