promote: uat → main (GRO-778, GRO-773, GRO-766, GRO-743) #334

Merged
the-dogfather-cto[bot] merged 18 commits from uat into main 2026-04-17 22:51:38 +00:00
Showing only changes of commit 4001691ae7 - Show all commits
+10 -4
View File
@@ -93,9 +93,12 @@ export async function initAuth(): Promise<void> {
baseURL: BETTER_AUTH_URL, baseURL: BETTER_AUTH_URL,
rateLimit: { rateLimit: {
enabled: true, enabled: true,
max: 10, max: 100,
window: 60, window: 10,
storage: "memory", storage: "memory",
customRules: {
"/get-session": false,
},
}, },
plugins: [ plugins: [
genericOAuth({ genericOAuth({
@@ -240,9 +243,12 @@ export async function initAuth(): Promise<void> {
baseURL: BETTER_AUTH_URL, baseURL: BETTER_AUTH_URL,
rateLimit: { rateLimit: {
enabled: true, enabled: true,
max: 10, max: 100,
window: 60, window: 10,
storage: "memory", storage: "memory",
customRules: {
"/get-session": false,
},
}, },
account: { account: {
storeStateStrategy: "cookie" as const, storeStateStrategy: "cookie" as const,