diff --git a/workers/mastodon/index.js b/workers/mastodon/index.js index 1381416f..b4fcc50e 100644 --- a/workers/mastodon/index.js +++ b/workers/mastodon/index.js @@ -8,19 +8,6 @@ export default { async scheduled(event, env, ctx) { await handleMastodonPost(env); }, - - async fetch(request, env, ctx) { - if (request.method !== "POST") - return new Response("Method Not Allowed", { status: 405 }); - if (request.headers.get("x-webhook-token") !== env.WEBHOOK_SECRET) - return new Response("Unauthorized", { status: 401 }); - - await handleMastodonPost(env); - - return new Response("Worker triggered by successful build.", { - status: 200, - }); - }, }; async function handleMastodonPost(env) {