Skip to content

Commit 5f472b9

Browse files
Fixed status endpoint
1 parent c124a46 commit 5f472b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/domains/router.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default function createRouter() {
4848
router.post("/api/auth/renew", withAuth, handleAuthRenewRequest);
4949

5050
router.get("/api/feed", withAuth, withSchema(feedRequestSchema), handleFeedRequest);
51-
router.get("/api/status", withAuth, withParams, withSchema(statusRequestSchema), handleStatusRequest);
51+
router.get("/api/status", withParams, withSchema(statusRequestSchema), handleStatusRequest);
5252

5353
router.get("/api/maps/geocode", withAuth, withSchema(mapsGeocodeSchema), handleMapsGeocodeRequest);
5454
router.get("/api/maps/search", withAuth, withSchema(mapsSearchSchema), handleMapsSearchRequest);

0 commit comments

Comments
 (0)