Merged PR 1109: added sorting to viewall page

added sorting to viewall page

Related work items: #10572
This commit is contained in:
Robert Bond
2024-03-21 11:56:37 +00:00
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";