Skip to content

Commit

Permalink
Update ratelimitProcedure.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
perkinsjr authored Oct 22, 2024
1 parent 34831dc commit 16a5228
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/dashboard/lib/trpc/ratelimitProcedure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const ratelimit = env().UNKEY_ROOT_KEY
create: new Ratelimit({
rootKey: env().UNKEY_ROOT_KEY ?? "",
namespace: "trpc_create",
limit: 5,
limit: 25,
duration: "3s",
}),

Expand All @@ -22,7 +22,7 @@ export const ratelimit = env().UNKEY_ROOT_KEY
delete: new Ratelimit({
rootKey: env().UNKEY_ROOT_KEY ?? "",
namespace: "trpc_delete",
limit: 5,
limit: 25,
duration: "5s",
}),
}
Expand Down

0 comments on commit 16a5228

Please sign in to comment.