2019-10-24 00:39:32 +08:00
|
|
|
import Route from "@ember/routing/route";
|
2018-09-10 02:48:08 +08:00
|
|
|
import { emojiUrlFor } from "discourse/lib/text";
|
|
|
|
|
2018-09-07 02:56:00 +08:00
|
|
|
const externalResources = [
|
|
|
|
{
|
|
|
|
key: "admin.customize.theme.beginners_guide_title",
|
|
|
|
link: "https://meta.discourse.org/t/91966",
|
|
|
|
icon: "book"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "admin.customize.theme.developers_guide_title",
|
|
|
|
link: "https://meta.discourse.org/t/93648",
|
|
|
|
icon: "book"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "admin.customize.theme.browse_themes",
|
|
|
|
link: "https://meta.discourse.org/c/theme",
|
|
|
|
icon: "paint-brush"
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
2019-10-24 00:39:32 +08:00
|
|
|
export default Route.extend({
|
2018-09-08 21:24:11 +08:00
|
|
|
setupController(controller) {
|
2018-09-07 02:56:00 +08:00
|
|
|
this._super(...arguments);
|
2017-04-14 03:49:46 +08:00
|
|
|
this.controllerFor("adminCustomizeThemes").set("editingTheme", false);
|
2018-09-10 02:48:08 +08:00
|
|
|
controller.setProperties({
|
|
|
|
externalResources,
|
|
|
|
womanArtistEmojiURL: emojiUrlFor("woman_artist:t5")
|
|
|
|
});
|
2018-06-15 23:03:24 +08:00
|
|
|
}
|
2017-04-14 03:49:46 +08:00
|
|
|
});
|