mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 01:44:02 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
23 lines
627 B
JavaScript
23 lines
627 B
JavaScript
import Controller from "@ember/controller";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { THEMES } from "admin/models/theme";
|
|
|
|
export default class AdminCustomizeThemesController extends Controller {
|
|
currentTab = THEMES;
|
|
|
|
@discourseComputed("model", "model.@each.component")
|
|
fullThemes(themes) {
|
|
return themes.filter((t) => !t.get("component"));
|
|
}
|
|
|
|
@discourseComputed("model", "model.@each.component")
|
|
childThemes(themes) {
|
|
return themes.filter((t) => t.get("component"));
|
|
}
|
|
|
|
@discourseComputed("model.content")
|
|
installedThemes(content) {
|
|
return content || [];
|
|
}
|
|
}
|