13 lines
296 B
Python
13 lines
296 B
Python
"""Back account URLs"""
|
|
from django.urls import path
|
|
|
|
from account.views import back as views
|
|
|
|
app_name = 'account'
|
|
|
|
urlpatterns = [
|
|
path('role/', views.RoleLstView.as_view(), name='role-list-create'),
|
|
path('user-role/', views.UserRoleLstView.as_view(), name='user-role-list-create'),
|
|
|
|
]
|