From 71b46438e7aeea77eca68765594cdd7ac0ba8904 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=BE=E3=81=A3=E3=81=A1=E3=82=83=E3=81=A8=E3=83=BC?= =?UTF-8?q?=E3=81=AB=E3=82=85?= <17376330+u1-liquid@users.noreply.github.com> Date: Wed, 14 Feb 2024 23:02:51 +0900 Subject: [PATCH] =?UTF-8?q?spec(api):=20Misskey=E5=86=85=E9=83=A8=E3=81=AE?= =?UTF-8?q?`notifications/create`=E3=81=AE=E3=83=AC=E3=83=BC=E3=83=88?= =?UTF-8?q?=E3=83=AA=E3=83=9F=E3=83=83=E3=83=88=E3=82=92=E5=BB=83=E6=AD=A2?= =?UTF-8?q?=20(MisskeyIO#451)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cloudflare上でレートリミットをコントロールしたいため --- .../backend/src/server/api/endpoints/notifications/create.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/backend/src/server/api/endpoints/notifications/create.ts b/packages/backend/src/server/api/endpoints/notifications/create.ts index 7671b58e6b..523c260a34 100644 --- a/packages/backend/src/server/api/endpoints/notifications/create.ts +++ b/packages/backend/src/server/api/endpoints/notifications/create.ts @@ -14,11 +14,6 @@ export const meta = { kind: 'write:notifications', - limit: { - duration: 1000 * 60, - max: 10, - }, - errors: { }, } as const;