add types to url
This commit is contained in:
parent
d54d021e9f
commit
5fb72cea53
|
@ -5,6 +5,6 @@ from . import views
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path("chocos/", views.chocos),
|
path("chocos/", views.chocos),
|
||||||
path("install/", views.install),
|
path("install/", views.install),
|
||||||
path("installed/<pk>/", views.get_installed),
|
path("installed/<int:pk>/", views.get_installed),
|
||||||
path("refresh/<pk>/", views.refresh_installed),
|
path("refresh/<int:pk>/", views.refresh_installed),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue