urls.py 653 B

123456789101112131415161718192021
  1. from django.urls import path
  2. from .views import DifsAssembleAPIView, DsymsAPIView, ProjectReprocessingAPIView
  3. urlpatterns = [
  4. path(
  5. "projects/<slug:organization_slug>/<slug:project_slug>/files/difs/assemble/", # noqa
  6. DifsAssembleAPIView.as_view(),
  7. name="difs-assemble",
  8. ),
  9. path(
  10. "projects/<slug:organization_slug>/<slug:project_slug>/reprocessing/", # noqa
  11. ProjectReprocessingAPIView.as_view(),
  12. name="project-reporcessing",
  13. ),
  14. path(
  15. "projects/<slug:organization_slug>/<slug:project_slug>/files/dsyms/", # noqa
  16. DsymsAPIView.as_view(),
  17. name="dyms",
  18. ),
  19. ]