# The Mia core application of the Mia project. # by imacat , 2020/8/9 # Copyright (c) 2020 imacat. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """The route settings of the Mia core application. """ from django.urls import path, register_converter from . import views, converters register_converter(converters.UserConverter, "user") app_name = "mia_core" urlpatterns = [ path("users", views.UserListView.as_view(), name="users"), # TODO: To be done. path("users/create", views.todo, name="users.create"), # TODO: To be done. path("users/store", views.todo, name="users.store"), path("users/", views.UserView.as_view(), name="users.detail"), # TODO: To be done. path("users//edit", views.todo, name="users.edit"), # TODO: To be done. path("users//update", views.todo, name="users.update"), # TODO: To be done. path("users//delete", views.todo, name="users.delete"), # TODO: To be done. path("api/users//exists", views.todo, name="api.users.exists"), # TODO: To be done. path("my-account", views.todo, name="my-account"), # TODO: To be done. path("my-account/edit", views.todo, name="my-account.edit"), # TODO: To be done. path("my-account/update", views.todo, name="my-account.update"), ]