mirror of
https://github.com/discourse/discourse.git
synced 2024-12-14 04:33:43 +08:00
be5c37a6d4
* UX: Add a description about badges * WIP: Apply admin UI guidelines * FIX: Add routeModels to dbutton Allows routeModels to be passed to a DButton along with route, so we can use them as a LinkTo replacement in more places. Also fix up badges admin page header. * UX: Reorder action buttons * UX: Change header hierarchy to better align page's content structure * UX: Update copy and remove unnecessary UI elements * UX: Adjust header's icon spacing * UX: Fix the header action buttons on mobile * Apply prettier --------- Co-authored-by: Martin Brennan <martin@discourse.org>
9 lines
256 B
JavaScript
9 lines
256 B
JavaScript
import Route from "@ember/routing/route";
|
|
import { emojiUrlFor } from "discourse/lib/text";
|
|
|
|
export default class AdminBadgesIndexRoute extends Route {
|
|
setupController(controller) {
|
|
controller.badgeIntroEmoji = emojiUrlFor("woman_student:t4");
|
|
}
|
|
}
|