url for seed list

This commit is contained in:
wcolmenares 2019-05-26 16:13:58 -04:00
parent 9576ae9064
commit 321d8548da
1 changed files with 2 additions and 0 deletions

View File

@ -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"),