UNPKG

704 BJavaScriptView Raw
1/**
2 * @license
3 * MOST Web Framework 2.0 Codename Blueshift
4 * Copyright (c) 2017, THEMOST LP All rights reserved
5 *
6 * Use of this source code is governed by an BSD-3-Clause license that can be
7 * found in the LICENSE file at https://themost.io/license
8 */
9var HttpController = require("../mvc").HttpController;
10var LangUtils = require("@themost/common/utils").LangUtils;
11/**
12 * @class
13 * @constructor
14 * @param {HttpContext} context
15 * @augments HttpController
16 */
17function HttpHiddenController(context)
18{
19 HttpHiddenController.super_.bind(this)(context);
20}
21LangUtils.inherits(HttpHiddenController, HttpController);
22
23if (typeof module !== 'undefined') {
24 module.exports = HttpHiddenController;
25}
\No newline at end of file