1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 11:24:35 +00:00

chore: removed public htmls

This commit is contained in:
Saad Jutt
2021-10-14 18:54:11 +05:00
parent 4912915a6e
commit c9e11a5646
4 changed files with 0 additions and 9 deletions

View File

@@ -1,3 +0,0 @@
Unauthorized
<a href="/signin-with-azure" role="button">Sign-in</a>

View File

@@ -1 +0,0 @@
Page Not Found

View File

@@ -1 +0,0 @@
Server Error

View File

@@ -58,8 +58,4 @@ app.get(Routes.Login, (req, res) => {
app.use(passportMiddleware())
app.get('/error', (req, res) => res.redirect('/500.html'))
app.get('/unauthorized', (req, res) => res.redirect('/401.html'))
// app.get('*', (req, res) => res.status(404).redirect('/404.html'))
export default app