We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e44b0f8 commit 07eb210Copy full SHA for 07eb210
packages/worker/src/index.ts
@@ -144,8 +144,12 @@ export function R2Explorer(config?: R2ExplorerConfig) {
144
openapi.post("/api/emails/send", SendEmail);
145
146
// No Share ID? Send to 404
147
- openapi.get("/share", (c) => Response.json({ msg: "404, not found!" }, { status: 404 }));
148
- openapi.get("/share/", (c) => Response.json({ msg: "404, not found!" }, { status: 404 }));
+ openapi.get("/share", (c) =>
+ Response.json({ msg: "404, not found!" }, { status: 404 }),
149
+ );
150
+ openapi.get("/share/", (c) =>
151
152
153
154
// Public share access (no authentication required)
155
openapi.get("/share/:shareId", GetShareLink);
0 commit comments