mirror of https://github.com/jumpserver/jumpserver
18 lines
351 B
Python
18 lines
351 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from django.conf.urls import url, include
|
|
from rest_framework import routers
|
|
|
|
from .api import UserViewSet
|
|
|
|
|
|
router = routers.DefaultRouter()
|
|
router.register(r'users', UserViewSet)
|
|
|
|
urlpatterns = [
|
|
url(r'v1/', include(router.urls)),
|
|
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework'))
|
|
]
|
|
|