added sorting to viewall page

This commit is contained in:
2024-03-21 11:54:40 +00:00
parent e218a027d9
commit f5409ff243
2 changed files with 603 additions and 397 deletions
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -150,7 +150,7 @@ const authOptions = (locale, req, res) => {
},
},
EmailProvider({
maxAge: 10 * 60, // Magic links are valid for 10 min only
maxAge: 2 * 60 * 60, //10 * 60, // Magic links are valid for 10 min only
async sendVerificationRequest({ identifier: email, url }) {
const { host, port, protocol, token, searchParams } =
new URL(url);
@@ -173,7 +173,7 @@ const authOptions = (locale, req, res) => {
"emailAddress": email,
"signInLink": url,
"linkExpiry": 10 * 60,
"linkExpiry": 2 * 60 * 60,
};
const reference = "PEDW-SIGNIN";