This commit is contained in:
Eugene Pankov
2021-06-25 21:55:40 +02:00
parent 663615fe06
commit 0689c984ff
24 changed files with 573 additions and 320 deletions

View File

@@ -12,7 +12,7 @@ router.register('api/1/versions', api.AppVersionViewSet, basename='app-versions'
urlpatterns = [
path('api/1/auth/logout', api.LogoutView.as_view()),
path('api/1/user', api.UserViewSet.as_view({'get': 'retrieve'})),
path('api/1/user', api.UserViewSet.as_view({'get': 'retrieve', 'put': 'update'})),
path('', views.IndexView.as_view()),
path('terminal', views.TerminalView.as_view()),