Skip to content

Commit

Permalink
Updating paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehewitt15 committed Jul 25, 2023
1 parent 0d80adb commit bdae836
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions server/oceandbs/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
from . import views

urlpatterns = [
path('', views.StorageListView.as_view(), name="info"),
path('register', views.StorageCreationView.as_view(), name="service-creation"),
path('getStatus', views.QuoteStatusView.as_view(), name="status"),
path('getLink', views.QuoteLink.as_view(), name="link"),
path('getQuote', views.QuoteCreationView.as_view()),
path('upload', views.UploadFile.as_view())
path('/', views.StorageListView.as_view(), name="info"),
path('/register', views.StorageCreationView.as_view(), name="service-creation"),
path('/getStatus', views.QuoteStatusView.as_view(), name="status"),
path('/getLink', views.QuoteLink.as_view(), name="link"),
path('/getQuote', views.QuoteCreationView.as_view()),
path('/upload', views.UploadFile.as_view())
]

0 comments on commit bdae836

Please sign in to comment.