jumpserver/apps/tickets/urls/api_urls.py

16 lines
363 B
Python
Raw Normal View History

2019-11-07 10:06:58 +00:00
# -*- coding: utf-8 -*-
#
2019-11-08 12:17:25 +00:00
from rest_framework_bulk.routes import BulkRouter
2019-11-07 10:06:58 +00:00
from .. import api
app_name = 'tickets'
2019-11-08 12:17:25 +00:00
router = BulkRouter()
2019-11-07 10:06:58 +00:00
router.register('tickets', api.TicketViewSet, 'ticket')
router.register('assignees', api.AssigneeViewSet, 'assignee')
router.register('comments', api.CommentViewSet, 'comment')
2019-11-07 10:06:58 +00:00
urlpatterns = []
2019-11-07 10:06:58 +00:00
urlpatterns += router.urls