mirror of
https://github.com/spbleadersofdigtal/backend.git
synced 2024-11-22 19:36:32 +03:00
8 lines
200 B
Python
8 lines
200 B
Python
from django.urls import path
|
|
|
|
from pitch_deck_generator.tickets.api.views import RetrieveTicketSerializer
|
|
|
|
urlpatterns = [
|
|
path("<str:uuid>", RetrieveTicketSerializer.as_view(), name="ticket"),
|
|
]
|