diff options
| author | Pitu <[email protected]> | 2020-12-25 20:45:22 +0900 |
|---|---|---|
| committer | Pitu <[email protected]> | 2020-12-25 20:45:22 +0900 |
| commit | ec2f9e0d989792c1760b48e063467cf6e59c580a (patch) | |
| tree | 6f447aeebe9af7be57ba15e23851a4611568ec3e /src/api/routes/auth | |
| parent | chore: style changes (diff) | |
| download | host.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.js | 2 |
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' }); |