mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-05 14:46:20 +00:00
* perf: remove notification migrations * perf: country code api --------- Co-authored-by: ibuler <ibuler@qq.com>
14 lines
283 B
Python
14 lines
283 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from django.urls import path
|
|
|
|
from .. import api
|
|
|
|
app_name = 'common'
|
|
|
|
urlpatterns = [
|
|
path('resources/cache/', api.ResourcesIDCacheApi.as_view(), name='resources-cache'),
|
|
path('countries/', api.CountryListApi.as_view(), name='resources-cache'),
|
|
]
|