We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a44a29 commit 2a7aed1Copy full SHA for 2a7aed1
packages/worker/src/index.ts
@@ -142,15 +142,15 @@ export function R2Explorer(config?: R2ExplorerConfig) {
142
openapi.post("/api/buckets/:bucket/:key", PutMetadata);
143
144
openapi.post("/api/emails/send", SendEmail);
145
-
+
146
// No Share ID? Send to 404
147
openapi.get("/share", (c) =>
148
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);
156
0 commit comments