Commit b61a4b8e authored by Rosanny Sihombing's avatar Rosanny Sihombing
Browse files

delete landing and videoconferences routes

parent 3c4fbc4f
...@@ -141,7 +141,7 @@ module.exports = function (app, config, passport) { ...@@ -141,7 +141,7 @@ module.exports = function (app, config, passport) {
]) ])
}); });
app.get('/project_', function (req, res) { app.get('/project', function (req, res) {
async.waterfall([ async.waterfall([
// get all projects from projectdb // get all projects from projectdb
function(done) { function(done) {
...@@ -194,7 +194,7 @@ module.exports = function (app, config, passport) { ...@@ -194,7 +194,7 @@ module.exports = function (app, config, passport) {
]) ])
}) })
app.get('/project', function (req, res) { app.get('/project_', function (req, res) {
res.render(lang+'/project/project-simplified', { res.render(lang+'/project/project-simplified', {
isUserAuthenticated: req.isAuthenticated(), isUserAuthenticated: req.isAuthenticated(),
user: req.user user: req.user
...@@ -445,17 +445,4 @@ module.exports = function (app, config, passport) { ...@@ -445,17 +445,4 @@ module.exports = function (app, config, passport) {
]) ])
}) })
app.get('/videoconferences', function(req, res){
res.render(lang+'/project/videoconferences', {
isUserAuthenticated: req.isAuthenticated(),
user: req.user,
});
})
app.get('/landingpage', function(req, res){
res.render(lang+'/project/landingpage', {
isUserAuthenticated: req.isAuthenticated(),
user: req.user,
});
})
}; };
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment