mirror of https://github.com/jumpserver/jumpserver
22 lines
566 B
Python
22 lines
566 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from django.conf.urls import url
|
|
from rest_framework import routers
|
|
|
|
from .. import api
|
|
|
|
app_name = 'applications'
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register(r'v1/terminal/heatbeat', api.TerminalHeatbeatViewSet, 'terminal-heatbeat')
|
|
router.register(r'v1/terminal', api.TerminalViewSet, 'terminal')
|
|
|
|
urlpatterns = [
|
|
url(r'^v1/terminal/register/$', api.TerminalRegisterView.as_view(), name='terminal-register'),
|
|
# url(r'^v1/terminal/heatbeat/$', api.TestHeatbeat.as_view())
|
|
]
|
|
|
|
urlpatterns += router.urls
|