123456789101112131415161718192021 |
- from django.urls import path
- from .views import DifsAssembleAPIView, DsymsAPIView, ProjectReprocessingAPIView
- urlpatterns = [
- path(
- "projects/<slug:organization_slug>/<slug:project_slug>/files/difs/assemble/",
- DifsAssembleAPIView.as_view(),
- name="difs-assemble",
- ),
- path(
- "projects/<slug:organization_slug>/<slug:project_slug>/reprocessing/",
- ProjectReprocessingAPIView.as_view(),
- name="project-reporcessing",
- ),
- path(
- "projects/<slug:organization_slug>/<slug:project_slug>/files/dsyms/",
- DsymsAPIView.as_view(),
- name="dyms",
- ),
- ]
|