#31 API basic implementation Ema fetch
* adds API support for fetching EMA
This commit is contained in:
@@ -9,6 +9,7 @@ from django.urls import path
|
||||
|
||||
from api.views.v1.compensation import APICompensationViewV1
|
||||
from api.views.v1.ecoaccount import APIEcoAccountViewV1
|
||||
from api.views.v1.ema import APIEmaViewV1
|
||||
from api.views.v1.intervention import APIInterventionViewV1
|
||||
|
||||
app_name = "v1"
|
||||
@@ -16,4 +17,5 @@ urlpatterns = [
|
||||
path("intervention/<id>", APIInterventionViewV1.as_view(), name="intervention"),
|
||||
path("compensation/<id>", APICompensationViewV1.as_view(), name="compensation"),
|
||||
path("ecoaccount/<id>", APIEcoAccountViewV1.as_view(), name="ecoaccount"),
|
||||
path("ema/<id>", APIEmaViewV1.as_view(), name="ema"),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user