Refactor API arguments
closes #2610, refs #2697
- cleanup API index.js, and add docs
- all API methods take consistent arguments: object & options
- browse, read, destroy take options, edit and add take object and options
- the context is passed as part of options, meaning no more .call
everywhere
- destroy expects an object, rather than an id all the way down to the model layer
- route params such as :id, :slug, and :key are passed as an option & used
to perform reads, updates and deletes where possible - settings / themes
may need work here still
- HTTP posts api can find a post by slug
- Add API utils for checkData
2014-05-08 16:41:19 +04:00
|
|
|
// Posts
|
2013-11-03 03:40:43 +04:00
|
|
|
var blanket = require("blanket")({
|
2014-02-27 03:15:31 +04:00
|
|
|
"pattern": ["/core/server/", "/core/clientold/", "/core/shared/"],
|
|
|
|
"data-cover-only": ["/core/server/", "/core/clientold/", "/core/shared/"]
|
2013-11-12 00:54:48 +04:00
|
|
|
}),
|
2013-11-03 03:40:43 +04:00
|
|
|
requireDir = require("require-dir");
|
|
|
|
|
Refactor API arguments
closes #2610, refs #2697
- cleanup API index.js, and add docs
- all API methods take consistent arguments: object & options
- browse, read, destroy take options, edit and add take object and options
- the context is passed as part of options, meaning no more .call
everywhere
- destroy expects an object, rather than an id all the way down to the model layer
- route params such as :id, :slug, and :key are passed as an option & used
to perform reads, updates and deletes where possible - settings / themes
may need work here still
- HTTP posts api can find a post by slug
- Add API utils for checkData
2014-05-08 16:41:19 +04:00
|
|
|
|
2013-11-03 03:40:43 +04:00
|
|
|
requireDir("./unit");
|
2014-05-03 17:34:41 +04:00
|
|
|
requireDir("./integration");
|
2014-05-08 01:28:29 +04:00
|
|
|
requireDir("./functional/routes");
|