aboutsummaryrefslogtreecommitdiff
path: root/src/api/routes/auth
diff options
context:
space:
mode:
authorPitu <[email protected]>2020-12-25 20:45:22 +0900
committerPitu <[email protected]>2020-12-25 20:45:22 +0900
commitec2f9e0d989792c1760b48e063467cf6e59c580a (patch)
tree6f447aeebe9af7be57ba15e23851a4611568ec3e /src/api/routes/auth
parentchore: style changes (diff)
downloadhost.fuwn.me-ec2f9e0d989792c1760b48e063467cf6e59c580a.tar.xz
host.fuwn.me-ec2f9e0d989792c1760b48e063467cf6e59c580a.zip
Rebrand
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 71867f0..373252b 100644
--- a/src/api/routes/auth/loginPOST.js
+++ b/src/api/routes/auth/loginPOST.js
@@ -34,7 +34,7 @@ class loginPOST extends Route {
Create the jwt with some data
*/
const jwt = JWT.sign({
- iss: 'lolisafe',
+ iss: 'chibisafe',
sub: user.id,
iat: moment.utc().valueOf()
}, process.env.SECRET, { expiresIn: '30d' });