mirror of https://github.com/jumpserver/jumpserver
16 lines
363 B
Python
16 lines
363 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('assignees', api.AssigneeViewSet, 'assignee')
|
|
router.register('comments', api.CommentViewSet, 'comment')
|
|
|
|
urlpatterns = []
|
|
urlpatterns += router.urls
|