UNPKG

slush-y

Version:

A slush generator for Best Practices with AngularJS Fullstack applications.

62 lines (48 loc) 1.4 kB
;(function(){ 'use strict'; /** * Module dependencies. */ var mongoose = require('mongoose'), _ = require('lodash'); /** * index List of <%= names.plural.humanized %> * @param {[type]} req [description] * @param {[type]} res [description] * @return {[type]} [description] */ exports.index = function(req, res) { }; /** * create Create a <%= names.single.humanized %> * @param {[type]} req [description] * @param {[type]} res [description] * @return {[type]} [description] */ exports.create = function(req, res) { }; /** * read Show the current <%= names.single.humanized %> * @param {[type]} req [description] * @param {[type]} res [description] * @return {[type]} [description] */ exports.read = function(req, res) { }; /** * update Update a <%= names.single.humanized %> * @param {[type]} req [description] * @param {[type]} res [description] * @return {[type]} [description] */ exports.update = function(req, res) { }; /** * delete Delete an <%= names.single.humanized %> * @param {[type]} req [description] * @param {[type]} res [description] * @return {[type]} [description] */ exports.delete = function(req, res) { }; }).call(this);