Use token authentication for API requests.

This commit is contained in:
Mike Cao 2020-09-17 22:52:20 -07:00
parent bff8806b61
commit 96bd7e5b47
34 changed files with 198 additions and 153 deletions

View file

@ -27,7 +27,7 @@ export function uuid(...args) {
return v5(args.join(''), salt());
}
export function isValidId(s) {
export function isValidUuid(s) {
return validate(s);
}