mirror of
https://github.com/magnum-opus-nn-cp/backend.git
synced 2025-02-24 07:30:42 +03:00
8 lines
196 B
Python
8 lines
196 B
Python
from django.urls import path
|
|
|
|
from press_release_nl.tickets.api.views import RetrieveTicketSerializer
|
|
|
|
urlpatterns = [
|
|
path("<str:uuid>", RetrieveTicketSerializer.as_view(), name="ticket"),
|
|
]
|