1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 19:59:27 +00:00
Files
stratos/lib/PasswordReset.js
2022-01-20 23:29:26 +00:00

27 lines
222 B
JavaScript

'use strict';
class PasswordReset {
userId;
token;
nonce;
expires;
constructor() {
}
get user() {
}
static hashToken(password) {
}
static generatePasswordReset() {
}
}
module.exports = PasswordReset;