pad_utils: Factor out author token generation

This commit is contained in:
Richard Hansen 2022-02-28 19:20:55 -05:00
parent 4e1674ceaf
commit 8053875d45
4 changed files with 10 additions and 3 deletions

View file

@ -178,7 +178,7 @@ const sendClientReady = (isReconnect) => {
let token = Cookies.get('token');
if (token == null) {
token = `t.${randomString()}`;
token = padutils.generateAuthorToken();
Cookies.set('token', token, {expires: 60});
}