mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-28 16:16:41 +00:00
13 lines
260 B
Python
13 lines
260 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from django.conf.urls import url, include
|
|
|
|
from .api import UserListApi, UserDetailApi
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^v1/users/$', UserListApi.as_view()),
|
|
url(r'^v1/users/(?P<pk>[0-9]+)/$', UserDetailApi.as_view()),
|
|
]
|