propro-utils 1.5.22 → 1.5.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -19,6 +19,11 @@ const setAuthCookies = (res, tokens, account, user, appUrl) => {
|
|
|
19
19
|
if (!user) {
|
|
20
20
|
throw new Error('Invalid user object');
|
|
21
21
|
}
|
|
22
|
+
|
|
23
|
+
console.log('Setting auth cookies');
|
|
24
|
+
console.log('tokens', tokens);
|
|
25
|
+
console.log('account', account);
|
|
26
|
+
console.log('user', user);
|
|
22
27
|
const currentDateTime = new Date();
|
|
23
28
|
|
|
24
29
|
const refreshMaxAge =
|