mirror of https://github.com/jumpserver/jumpserver
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'),
|
||
|
]
|