urls.py 658 B

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