Skip to content

Instantly share code, notes, and snippets.

@nsisodiya
Created December 31, 2014 06:31
Show Gist options
  • Save nsisodiya/873e2b3ade1d8acd0379 to your computer and use it in GitHub Desktop.
Save nsisodiya/873e2b3ade1d8acd0379 to your computer and use it in GitHub Desktop.
sails js Urls
//Destroy One Record
delete /:modelIdentity/:id
* /:modelIdentity/destroy/:id
//Find One Record
get /:modelIdentity/:id
//Find Records
get /:modelIdentity
* /:modelIdentity/find
//Create Record
post /:modelIdentity
//Add Record To Collection
post /:modelIdentity/:id/:collectionAttr/:childid
* /:modelIdentity/:id/:collectionAttr/add/:childid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment