13 lines
348 B
Python
13 lines
348 B
Python
# -*- encoding: utf-8 -*-
|
|
|
|
from django.urls import path, include
|
|
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
path("api-auth/", include("rest_framework.urls", namespace="rest_framework")),
|
|
|
|
path("tickets/", views.TicketListApiView.as_view(), name="tickets"),
|
|
path("filter-counts/", views.FilterCountApiView.as_view(), name="filter-counts"),
|
|
] |