From 155f9b4535264ba79bc32a954d3333252153d86e Mon Sep 17 00:00:00 2001 From: bsourisse Date: Mon, 16 Jan 2023 13:47:00 +0100 Subject: [PATCH] feat: emailAlert default param for user --- pages/api/auth/[...nextauth].js | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/api/auth/[...nextauth].js b/pages/api/auth/[...nextauth].js index 45c08bb..9cf72ce 100644 --- a/pages/api/auth/[...nextauth].js +++ b/pages/api/auth/[...nextauth].js @@ -26,6 +26,7 @@ export const authOptions = { password: '$2a$12$20yqRnuaDBH6AE0EvIUcEOzqkuBtn1wDzJdw2Beg8w9S.vEqdso0a', roles: ['admin'], + emailAlert: 'false', }, ]) );