Files
private-cloud/console/services/navigation_service.js

17 lines
338 B
JavaScript
Raw Normal View History

/**
* Created by Strawmanbobi
* 2016-12-05
*/
// system inclusion
/*
* function : Navigation to certain URL
* parameter : Name of page to navigate
* return : Redirect to the certain URL
*/
exports.navToURL = function(req, res) {
var bodyParam = req.body;
var page = bodyParam.page;
res.redirect("/" + page);
};