mirror of
https://github.com/strapi/strapi.git
synced 2025-09-26 00:39:49 +00:00
Integrate in Strapi project
This commit is contained in:
parent
28e993710b
commit
d8e5730ddf
9
config/routes.json
Normal file
9
config/routes.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"routes": {
|
||||
"GET /settingsmanager": {
|
||||
"controller": "SettingsManager",
|
||||
"action": "find",
|
||||
"policies": []
|
||||
}
|
||||
}
|
||||
}
|
13
controllers/SettingsManager.js
Normal file
13
controllers/SettingsManager.js
Normal file
@ -0,0 +1,13 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* A set of functions called "actions" for `SettingsManager`
|
||||
*/
|
||||
|
||||
module.exports = {
|
||||
|
||||
find: function *() {
|
||||
this.body = [];
|
||||
}
|
||||
|
||||
};
|
Before Width: | Height: | Size: 361 KiB After Width: | Height: | Size: 361 KiB |
Before Width: | Height: | Size: 443 KiB After Width: | Height: | Size: 443 KiB |
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 112 KiB |
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user