""" 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 from api.views.v1.views import EmaAPIViewV1, EcoAccountAPIViewV1, CompensationAPIViewV1, InterventionAPIViewV1, \ DeductionAPIViewV1 from api.views.views import InterventionCheckAPIView, InterventionAPIShareView, EcoAccountAPIShareView, EmaAPIShareView app_name = "v1" urlpatterns = [ path("intervention//check", InterventionCheckAPIView.as_view(), name="intervention-check"), path("intervention//share", InterventionAPIShareView.as_view(), name="intervention-share"), path("intervention/", InterventionAPIViewV1.as_view(), name="intervention"), path("intervention/", InterventionAPIViewV1.as_view(), name="intervention"), path("compensation/", CompensationAPIViewV1.as_view(), name="compensation"), path("compensation/", CompensationAPIViewV1.as_view(), name="compensation"), path("ecoaccount//share", EcoAccountAPIShareView.as_view(), name="ecoaccount-share"), path("ecoaccount/", EcoAccountAPIViewV1.as_view(), name="ecoaccount"), path("ecoaccount/", EcoAccountAPIViewV1.as_view(), name="ecoaccount"), path("deduction/", DeductionAPIViewV1.as_view(), name="deduction"), path("deduction/", DeductionAPIViewV1.as_view(), name="deduction"), path("ema//share", EmaAPIShareView.as_view(), name="ema-share"), path("ema/", EmaAPIViewV1.as_view(), name="ema"), path("ema/", EmaAPIViewV1.as_view(), name="ema"), ]