Skip to content
Snippets Groups Projects
Commit bbbf6ad8 authored by Ben Adida's avatar Ben Adida
Browse files

fixed redirect

parent 18942c79
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,10 @@ function router(app) {
app.set("views", __dirname + '/views');
// simple redirects (internal for now)
app.get('/sign_in', internal_redirector('/dialog/index.html'));
app.get('/sign_in', function(req, resp, next ){
resp.redirect('/dialog/dialog.html');
});
app.get('/register_iframe', internal_redirector('/dialog/register_iframe.html'));
app.get('/', function(req,res) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment