mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-05-11 01:33:02 +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'),
|
|
] |