mirror of https://github.com/jumpserver/jumpserver
16 lines
358 B
Python
16 lines
358 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
from rest_framework_bulk.routes import BulkRouter
|
|
|
|
from .. import api
|
|
|
|
app_name = 'tickets'
|
|
router = BulkRouter()
|
|
|
|
router.register('tickets', api.TicketViewSet, 'ticket')
|
|
router.register('flows', api.TicketFlowViewSet, 'flows')
|
|
router.register('comments', api.CommentViewSet, 'comment')
|
|
|
|
urlpatterns = []
|
|
urlpatterns += router.urls
|