fix: require auth for order status

This commit is contained in:
2026-01-09 17:48:47 +08:00
parent 2c6f4163c5
commit f1b3840dfb

View File

@@ -142,9 +142,6 @@ func isPublicRoute(ctx fiber.Ctx) bool {
if strings.HasPrefix(path, "/v1/tenants/") {
return true
}
if strings.HasPrefix(path, "/v1/orders/") && strings.HasSuffix(path, "/status") {
return true
}
if strings.HasPrefix(path, "/v1/storage/") {
return true
}