From 224a5f9fc5d76ab078217f653dafbd8ad370c7c7 Mon Sep 17 00:00:00 2001 From: austinkelsay Date: Fri, 8 Nov 2024 14:35:41 -0600 Subject: [PATCH] Remove authorization in vercel json --- vercel.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/vercel.json b/vercel.json index 84caa32..caa6c50 100644 --- a/vercel.json +++ b/vercel.json @@ -3,13 +3,11 @@ "crons": [ { "path": "/api/users/subscription/cron", - "schedule": "0 0 * * *", - "authorization": "@CRON_SECRET" + "schedule": "0 0 * * *" }, { "path": "/api/invoices/polling", - "schedule": "*/3 * * * *", - "authorization": "@PLEBDEVS_API_KEY" + "schedule": "*/3 * * * *" } ] }