Skip to content

Commit 3fdaad1

Browse files
authored
Merge pull request #292 from PROCOLLAB-github/rates_get_detail
Rates get detail urls
2 parents ebaa042 + d50092b commit 3fdaad1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

project_rates/urls.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
from django.urls import path
22

3-
from project_rates.views import RateProject, RateProjects
3+
from project_rates.views import RateProject, RateProjects, RateProjectsDetails
44

55
urlpatterns = [
66
path("rate/", RateProject.as_view()),
77
path("<int:program_id>", RateProjects.as_view()),
8+
path("details/<int:project_id>", RateProjectsDetails.as_view()),
89
]

0 commit comments

Comments
 (0)