aboutsummaryrefslogtreecommitdiff
path: root/src/api/routes/auth
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-01-15 02:25:59 +0000
committerFuwn <[email protected]>2022-01-15 02:25:59 +0000
commitf08230b5490b327ed8d98dcebcbc5eca5c5d2859 (patch)
tree7d7494b1c41a81e736267fceebbfe99410c6b15d /src/api/routes/auth
parentMerge branch 'master' of github.com:WeebDev/lolisafe (diff)
downloadhost.fuwn.me-f08230b5490b327ed8d98dcebcbc5eca5c5d2859.tar.xz
host.fuwn.me-f08230b5490b327ed8d98dcebcbc5eca5c5d2859.zip
chore: chibisafe -> Hostess
Diffstat (limited to 'src/api/routes/auth')
-rw-r--r--src/api/routes/auth/loginPOST.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/auth/loginPOST.js b/src/api/routes/auth/loginPOST.js
index cc72145..665d0a3 100644
--- a/src/api/routes/auth/loginPOST.js
+++ b/src/api/routes/auth/loginPOST.js
@@ -35,7 +35,7 @@ class loginPOST extends Route {
Create the jwt with some data
*/
const jwt = JWT.sign({
- iss: 'chibisafe',
+ iss: 'hostess',
sub: user.id,
iat: moment.utc().valueOf()
}, Util.config.secret, { expiresIn: '30d' });