mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:29:54 +08:00
25 lines
582 B
JavaScript
25 lines
582 B
JavaScript
import Route from "@ember/routing/route";
|
|
import { emojiUrlFor } from "discourse/lib/text";
|
|
|
|
const badgeIntroLinks = [
|
|
{
|
|
text: "admin.badges.badge_intro.what_are_badges_title",
|
|
href: "https://meta.discourse.org/t/32540",
|
|
icon: "book"
|
|
},
|
|
{
|
|
text: "admin.badges.badge_intro.badge_query_examples_title",
|
|
href: "https://meta.discourse.org/t/18978",
|
|
icon: "book"
|
|
}
|
|
];
|
|
|
|
export default Route.extend({
|
|
setupController(controller) {
|
|
controller.setProperties({
|
|
badgeIntroLinks,
|
|
badgeIntroEmoji: emojiUrlFor("woman_student:t4")
|
|
});
|
|
}
|
|
});
|