mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
27 lines
630 B
JavaScript
27 lines
630 B
JavaScript
import RestAdapter from "discourse/adapters/rest";
|
|
|
|
export default RestAdapter.extend({
|
|
basePath() {
|
|
return "/admin/";
|
|
},
|
|
|
|
afterFindAll(results) {
|
|
let map = {};
|
|
results.forEach(theme => {
|
|
map[theme.id] = theme;
|
|
});
|
|
results.forEach(theme => {
|
|
let mapped = theme.get("child_themes") || [];
|
|
mapped = mapped.map(t => map[t.id]);
|
|
theme.set("childThemes", mapped);
|
|
|
|
let mappedParents = theme.get("parent_themes") || [];
|
|
mappedParents = mappedParents.map(t => map[t.id]);
|
|
theme.set("parentThemes", mappedParents);
|
|
});
|
|
return results;
|
|
},
|
|
|
|
jsonMode: true
|
|
});
|