1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/mirage/config/settings.js
Kevin Ansfield c43974c14b fetch themes from /themes endpoint (#542)
refs https://github.com/TryGhost/Ghost/pull/8022

- use `/themes` API endpoint to fetch list of themes instead of `settings[0].availableThemes`
2017-02-21 18:28:44 +00:00

40 lines
1.2 KiB
JavaScript

export default function mockSettings(server) {
// These endpoints use the raw database & fixtures without going
// through the ORM at all (meaning no setting model). This is due
// to https://github.com/samselikoff/ember-cli-mirage/issues/943
// as far as can be determined.
// potential TODO: update once the above issue is fixed? We don't really
// gain anything from using the ORM for settings so it may not be a good idea
server.get('/settings/', function ({db}, {queryParams}) {
let {type} = queryParams;
let filters = type.split(',');
let settings = [];
if (!db.settings) {
server.loadFixtures('settings');
}
filters.forEach((type) => {
settings.pushObjects(db.settings.where({type}));
});
return {
settings,
meta: {filters: {type}}
};
});
server.put('/settings/', function ({db}, {requestBody}) {
let newSettings = JSON.parse(requestBody).settings;
newSettings.forEach((newSetting) => {
let {key} = newSetting;
db.settings.update({key}, newSetting);
});
return {
meta: {},
settings: db.settings
};
});
}