-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathurls.py
More file actions
18 lines (15 loc) · 1.03 KB
/
urls.py
File metadata and controls
18 lines (15 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
__author__ = "Rosetta Reatherford"
__license__ = "AGPL v3"
__maintainer__ = "The Public Library of Science (PLOS)"
from django.urls import re_path
from plugins.editorial_manager_transfer_service import views
urlpatterns = [
re_path(r'^manager/$', views.manager, name='editorial_manager_transfer_service_manager'),
re_path(r'^manager/sections/$', views.manager_sections, name='editorial_manager_transfer_service_manager_sections'),
re_path(r'^manager/sections/(?P<section_id>[0-9a-zA-Z-]+)/$', views.manager_section_editor, name='editorial_manager_transfer_service_manager_section_editor'),
re_path(r'^logs/$', views.transfer_report, name='editorial_manager_transfer_service_manager_logs'),
re_path(r"^logs/reports/(?P<report_id>[0-9a-zA-Z-]+)/$", views.transfer_report_logs,
name="editorial_manager_transfer_service_manager_report_logs"),
re_path(r"^logs/articles/(?P<article_id>\d+)/reports$", views.transfer_article_reports,
name="editorial_manager_transfer_service_manager_article_report_logs"),
]