UNPKG

skeeliv

Version:

A skeleton builder for create files with template

68 lines (53 loc) 1.29 kB
/** * indexController * * @module :: Controller * @description :: A set of functions called `actions`. * * Actions contain code telling Sails how to respond to a certain type of request. * (i.e. do stuff, then send some JSON, show an HTML page, or redirect to another URL) * * You can configure the blueprint URLs which trigger these actions (`config/controllers.js`) * and/or override them with custom routes (`config/routes.js`) * * NOTE: The code you write here supports both HTTP and Socket.io automatically. * * @docs :: http://sailsjs.org/#!documentation/controllers */ module.exports = { /** * Action blueprints: * `/index` */ index: function (req, res) { // Send a JSON response return res.json({ hello: 'world' }); }, /** * Action blueprints: * `/make` */ make: function (req, res) { // Send a JSON response return res.json({ hello: 'world' }); }, /** * Action blueprints: * `/remove` */ remove: function (req, res) { // Send a JSON response return res.json({ hello: 'world' }); }, /** * Overrides for the settings in `config/controllers.js` * (specific to IndexController) */ _config: {} };