Integrate in Strapi project

This commit is contained in:
Pierre BURGY 2016-08-26 14:07:57 +02:00
parent 28e993710b
commit d8e5730ddf
121 changed files with 38 additions and 0 deletions

9
config/routes.json Normal file
View File

@ -0,0 +1,9 @@
{
"routes": {
"GET /settingsmanager": {
"controller": "SettingsManager",
"action": "find",
"policies": []
}
}
}

View File

@ -0,0 +1,13 @@
'use strict';
/**
* A set of functions called "actions" for `SettingsManager`
*/
module.exports = {
find: function *() {
this.body = [];
}
};

View File

Before

Width:  |  Height:  |  Size: 361 KiB

After

Width:  |  Height:  |  Size: 361 KiB

View File

Before

Width:  |  Height:  |  Size: 443 KiB

After

Width:  |  Height:  |  Size: 443 KiB

View File

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