diff options
author | 2020-11-26 22:20:54 +0100 | |
---|---|---|
committer | 2020-11-26 22:20:54 +0100 | |
commit | f2fcc41cb17ece1fc5acf57809c5e3d61c236133 (patch) | |
tree | a103a0dd371c5f7fd5d7e3105fef0730c8594827 /app.js | |
parent | 627239499c7c9fb5e7af68b2e79e01d0523f5d8f (diff) | |
download | website_creator-f2fcc41cb17ece1fc5acf57809c5e3d61c236133.tar.gz website_creator-f2fcc41cb17ece1fc5acf57809c5e3d61c236133.tar.bz2 website_creator-f2fcc41cb17ece1fc5acf57809c5e3d61c236133.zip |
completed jwt token login with refresh token, reduced db calls
Diffstat (limited to 'app.js')
-rwxr-xr-x | app.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ app.use('/', express.static( path.join(__dirname, 'client/public') )); -app.get('*', (req, res) => res.redirect('/')); +// app.get('*', (req, res) => res.redirect('/')); app.listen(port, () => { console.log("Server is up on port " + port + "."); |