fixed multiple issues with the /signin page. #935 #936 #937

This commit is contained in:
Danny Coates 2018-09-24 12:01:39 -07:00
parent d34ff79fd7
commit c8bf3101aa
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
7 changed files with 35 additions and 24 deletions

View file

@ -67,6 +67,7 @@ module.exports = function(app) {
});
app.use(express.json());
app.get('/', language, pages.index);
app.get('/signin', pages.blank);
app.get('/legal', language, pages.legal);
app.get('/jsconfig.js', require('./jsconfig'));
app.get(`/share/:id${ID_REGEX}`, language, pages.blank);