mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 06:23:39 +08:00
40cb46631f
* Nest admin badges controller and route files * Use standard file names for admin-badges * Update resolver to allow standardized file structure for admin * Add adminBadges.index controller for property tracking * Modernize admin badges controller * Modernize admin-badges route * Add admin-badges index route * Modernize admin-badges.show controller and route * Modernize admin-badges.award controller and route * Convert BadgeButton to a Glimmer component
9 lines
239 B
JavaScript
9 lines
239 B
JavaScript
import Controller from "@ember/controller";
|
|
import { tracked } from "@glimmer/tracking";
|
|
|
|
export default class AdminBadgesIndexController extends Controller {
|
|
// Set by the route
|
|
@tracked badgeIntroLinks;
|
|
@tracked badgeIntroEmoji;
|
|
}
|