mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-26 04:58:53 +08:00
This change does two things: Modernizes the admin badges UI implementation. (Routes + controllers → components + services.) Adds a Settings tab to the new badges page. For all intents and purposes, this change is a lift-and-shift modernization. The addition of the settings tab is trivial once that is covered.
10 lines
235 B
JavaScript
Vendored
10 lines
235 B
JavaScript
Vendored
import Route from "@ember/routing/route";
|
|
import { service } from "@ember/service";
|
|
|
|
export default class AdminBadgesIndexRoute extends Route {
|
|
@service adminBadges;
|
|
|
|
async model() {
|
|
await this.adminBadges.fetchBadges();
|
|
}
|
|
}
|