Skip to content
Snippets Groups Projects
Commit 42c7aad2 authored by syuilo's avatar syuilo
Browse files

enhance(backend): configure ratelimit for notification creation apis

parent f9fc743c
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,11 @@ export const meta = {
kind: 'write:notifications',
limit: {
duration: 1000 * 60,
max: 10,
},
errors: {
},
} as const;
......
......@@ -13,6 +13,11 @@ export const meta = {
requireCredential: true,
kind: 'write:notifications',
limit: {
duration: 1000 * 60,
max: 10,
},
} as const;
export const paramDef = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment