mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-14 17:39:01 +08:00
Recently, themes page was rebranded and put `/admin/config/customize/themes`. In this PR, old `/admin/customize/themes` was removed. In addition, when an admin visits an old URL, they are redirected to the new one.
22 lines
618 B
JavaScript
22 lines
618 B
JavaScript
import Controller from "@ember/controller";
|
|
import discourseComputed from "discourse/lib/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 || [];
|
|
}
|
|
}
|