UNPKG

781 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 HttpDataController = require('./data');
10var LangUtils = require("@themost/common/utils").LangUtils;
11/**
12 * @classdesc HttpLookupController class describes a lookup model data controller.
13 * @class
14 * @constructor
15 * @param {HttpContext} context
16 * @augments HttpController
17 */
18function HttpLookupController(context) {
19 HttpLookupController.super_.bind(this)(context);
20}
21
22LangUtils.inherits(HttpLookupController, HttpDataController);
23
24if (typeof module !== 'undefined') {
25 module.exports = HttpLookupController;
26}
\No newline at end of file