url for seed list
This commit is contained in:
parent
9576ae9064
commit
321d8548da
1 changed files with 2 additions and 0 deletions
|
@ -15,6 +15,7 @@ from .views import (
|
||||||
ResetRequest,
|
ResetRequest,
|
||||||
UserCreateAPI,
|
UserCreateAPI,
|
||||||
ActivateAccount,
|
ActivateAccount,
|
||||||
|
Seeds,
|
||||||
SeedRetrieveCreate
|
SeedRetrieveCreate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -22,6 +23,7 @@ urlpatterns = [
|
||||||
path('register/', Register.as_view(), name="register"),
|
path('register/', Register.as_view(), name="register"),
|
||||||
path('create/', UserCreateAPI.as_view(), name="create"),
|
path('create/', UserCreateAPI.as_view(), name="create"),
|
||||||
path('changedata/', ChangeData.as_view(), name="change_data"),
|
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('resetpassword/', ResetPassword.as_view(), name="reset_password"),
|
||||||
path('changepassword/', ChangePassword.as_view(), name="change_password"),
|
path('changepassword/', ChangePassword.as_view(), name="change_password"),
|
||||||
path('deleteaccount/', DeleteAccount.as_view(), name="account_delete"),
|
path('deleteaccount/', DeleteAccount.as_view(), name="account_delete"),
|
||||||
|
|
Loading…
Reference in a new issue