add types to url

This commit is contained in:
wh1te909 2021-09-09 05:54:34 +00:00
parent d54d021e9f
commit 5fb72cea53
1 changed files with 2 additions and 2 deletions

View File

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