|
|
|
@ -15,6 +15,7 @@ from .views import (
|
|
|
|
|
ResetRequest, |
|
|
|
|
UserCreateAPI, |
|
|
|
|
ActivateAccount, |
|
|
|
|
Seeds, |
|
|
|
|
SeedRetrieveCreate |
|
|
|
|
) |
|
|
|
|
|
|
|
|
@ -22,6 +23,7 @@ urlpatterns = [
|
|
|
|
|
path('register/', Register.as_view(), name="register"), |
|
|
|
|
path('create/', UserCreateAPI.as_view(), name="create"), |
|
|
|
|
path('changedata/', ChangeData.as_view(), name="change_data"), |
|
|
|
|
path('seeds/', Seeds.as_view(), name="user_seeds"), |
|
|
|
|
path('resetpassword/', ResetPassword.as_view(), name="reset_password"), |
|
|
|
|
path('changepassword/', ChangePassword.as_view(), name="change_password"), |
|
|
|
|
path('deleteaccount/', DeleteAccount.as_view(), name="account_delete"), |
|
|
|
|