Files
private-cloud/console/services/navigation_service.js
strawmanbobi f94a89faef private cloud update 2020-06-14
1. completed i18n for private cloud (foreground and background)
2. fixed issues
2020-06-14 11:56:18 +08:00

17 lines
338 B
JavaScript

/**
* 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) {
let bodyParam = req.body;
let page = bodyParam.page;
res.redirect("/" + page);
};