* refactors payment creation, editing and removing into class based views * refactors analysis report methods into class based views * drops unused method view on api app (token generating has been de facto moved into users app long time ago)
14 lines
318 B
Python
14 lines
318 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
|
|
|
|
app_name = "api"
|
|
|
|
urlpatterns = [
|
|
path("v1/", include("api.urls.v1.urls", namespace="v1")),
|
|
] |