|
|
@@ -22,7 +22,6 @@ urlpatterns = [
|
|
|
path('stories/delete/<int:story_id>/', views.story_delete, name='story_delete'),
|
|
|
path('stories/close/<int:story_id>/', views.story_close, name='story_close'),
|
|
|
path('stories/reopen/<int:story_id>/', views.story_reopen, name='story_reopen'),
|
|
|
- path('stories/comment/<int:story_id>/', views.story_comment, name='story_comment'),
|
|
|
path('epics/<int:epic_id>', views.epic_details, name='epic_details'),
|
|
|
path('epics/create/', views.epic_create, name='epic_create'),
|
|
|
path('epics/edit/<int:epic_id>/', views.epic_edit, name='epic_edit'),
|
|
|
@@ -31,9 +30,9 @@ urlpatterns = [
|
|
|
path('epics/newval/<int:epic_id>/', views.epic_value_update, name='epic_value_update'),
|
|
|
path('epics/close/<int:epic_id>/', views.epic_close, name='epic_close'),
|
|
|
path('epics/reopen/<int:epic_id>/', views.epic_reopen, name='epic_reopen'),
|
|
|
- path('epics/comment/<int:epic_id>/', views.epic_comment, name='epic_comment'),
|
|
|
path('reports/', views.reports, name='reports'),
|
|
|
path('reports/sprints/', views.report_sprints, name='report_sprints'),
|
|
|
path('reports/projects/', views.report_projects, name='report_projects'),
|
|
|
+ path('comment/<obj_uuid>/', views.comment, name='comment'),
|
|
|
path('search/', views.search, name='search'),
|
|
|
]
|