11 lines
169 B
JavaScript
11 lines
169 B
JavaScript
const tokenTypes = {
|
|
ACCESS: 'access',
|
|
REFRESH: 'refresh',
|
|
RESET_PASSWORD: 'resetPassword',
|
|
VERIFY_EMAIL: 'verifyEmail',
|
|
};
|
|
|
|
module.exports = {
|
|
tokenTypes,
|
|
};
|