mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-05 14:46:20 +00:00
10 lines
189 B
Python
10 lines
189 B
Python
from django.urls import path
|
|
|
|
from .. import views
|
|
|
|
app_name = 'common'
|
|
|
|
urlpatterns = [
|
|
# login
|
|
path('flash-message/', views.FlashMessageMsgView.as_view(), name='flash-message'),
|
|
] |