Skip to content

Instantly share code, notes, and snippets.

@t3chnoboy
Created November 17, 2013 12:21
Show Gist options
  • Select an option

  • Save t3chnoboy/7512718 to your computer and use it in GitHub Desktop.

Select an option

Save t3chnoboy/7512718 to your computer and use it in GitHub Desktop.
sails generate controller User --coffee
# UserController
#
# @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 =
# Actions
#
# Code that should be run when Sails receives an HTTP request
# or a properly structured message from Socket.io.
#
# e.g.
# sayHello: (req, res) ->
# res.send 'Hello world!'
# Overrides for the settings in `config/controllers.js`
# (specific to UserController)
_config: {}
@t3chnoboy
Copy link
Author

'sails generate controller User --coffee' output

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment