1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-12-18 00:24:07 +00:00

Sails: Update blueprint API

This commit is contained in:
Julien LE COUPANEC 2018-06-27 11:35:27 +01:00
parent 87df4a5bff
commit 2c2b2fe384

View File

@ -107,23 +107,28 @@ sails.log(message);
// Populate and return foreign record(s) for the given association of this record.
("GET /:model/:id/:association");
// Create a new record in your database.
// Create a new record in your database
// and notify subscribed sockets that a newly record is created
("POST /:model");
// Update an existing record in the database and notify subscribed sockets that it has changed.
// Update an existing record in the database
// and notify subscribed sockets that it has changed.
("PATCH /:model/:id");
// Replace all of the foreign records in one of this record's collections (e.g. "comments").
// Replace all of the foreign records in one of this record's collections
// and notify subscribed sockets to the parent record.
("PUT /:model/:id/:association");
// Add a foreign record to one of this record's collections.
// Add a foreign record to one of this record's collections
// and notify subscribed sockets to the parent record.
("PUT /:model/:id/:association/:fk");
// Delete the record specified by id from the database forever
// and notify subscribed sockets.
// and notify subscribed sockets that a record has been deleted
("DELETE /:model/:id");
// Remove a foreign record (e.g. a comment) from one of this record's collections (e.g. "comments").
// Remove a foreign record from one of this record's collections
// and notify subscribed sockets about this removed child
("DELETE /:model/:id/:association/:fk");
/********************************************************************************************