Files
JMuseum/models/renderModels/submit_theme.js
2018-02-26 14:09:18 +08:00

14 lines
512 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 以基本插值資料、路由路徑做資料源設定在submit_theme頁面下該插入什麼資料值。
* @param {BasicLayout} renderData 插值物件。
* @param {string} route 路由路徑。
* @param {Express.Session} session Express的Session物件。
* @param {CallbackFunction} callback 回呼函式。
*/
function SubmitThemeRender(renderData, route, session, callback) {
// 此頁面不需要任何插值資料
callback(null, true);
}
module.exports.Render = SubmitThemeRender;