Skip to content

Commit

Permalink
fix(API): add v1 prefix to status endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Aug 23, 2024
1 parent 820d821 commit 36cd8b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion open_prices/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
path("v1/auth", LoginView.as_view(), name="login"),
path("v1/session", SessionView.as_view(), name="session"),
# health check
path("status", StatusView.as_view(), name="status"),
path("v1/status", StatusView.as_view(), name="status"),
# Swagger / OpenAPI documentation
path("schema", SpectacularAPIView.as_view(), name="schema"),
path(
Expand Down

0 comments on commit 36cd8b2

Please sign in to comment.