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

@ -327,6 +327,12 @@ const padutils = {
return cc;
}
}),
/**
* Returns a string that can be used in the `token` cookie as a secret that authenticates a
* particular author.
*/
generateAuthorToken: () => `t.${randomString()}`,
};
let globalExceptionHandler = null;