2022-01-21 15:26:08 +01:00
|
|
|
"""
|
|
|
|
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
|
|
|
|
|
2022-01-21 17:32:31 +01:00
|
|
|
from api.views.v1.compensation import APICompensationViewV1
|
2022-01-21 17:44:58 +01:00
|
|
|
from api.views.v1.ecoaccount import APIEcoAccountViewV1
|
2022-01-21 17:49:07 +01:00
|
|
|
from api.views.v1.ema import APIEmaViewV1
|
2022-01-21 16:15:16 +01:00
|
|
|
from api.views.v1.intervention import APIInterventionViewV1
|
2022-01-21 15:26:08 +01:00
|
|
|
|
2022-01-21 16:15:16 +01:00
|
|
|
app_name = "v1"
|
2022-01-21 15:26:08 +01:00
|
|
|
urlpatterns = [
|
2022-01-21 16:29:59 +01:00
|
|
|
path("intervention/<id>", APIInterventionViewV1.as_view(), name="intervention"),
|
2022-01-21 17:32:31 +01:00
|
|
|
path("compensation/<id>", APICompensationViewV1.as_view(), name="compensation"),
|
2022-01-21 17:44:58 +01:00
|
|
|
path("ecoaccount/<id>", APIEcoAccountViewV1.as_view(), name="ecoaccount"),
|
2022-01-21 17:49:07 +01:00
|
|
|
path("ema/<id>", APIEmaViewV1.as_view(), name="ema"),
|
2022-01-21 15:26:08 +01:00
|
|
|
]
|