mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 10:27:09 +00:00
In short: POST creates a new project PUT overwrites a project configuration with a new one PATCH merges the request body with the existing configuration
9 lines
161 B
JavaScript
9 lines
161 B
JavaScript
|
|
module.exports = {
|
|
get: require('./get'),
|
|
// post: require('./post'),
|
|
put: require('./put'),
|
|
patch: require('./patch'),
|
|
// delete: require('./delete'),
|
|
};
|