discourse/app/assets/javascripts/admin/addon/templates/admin-badges/show.gjs
Ted Johansson e8997b6202
DEV: Add Settings tab to admin Badges page (#32251)
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.
2025-04-21 09:41:29 +08:00

8 lines
247 B
Text
Vendored

import RouteTemplate from "ember-route-template";
import AdminBadgesShow from "admin/components/admin-badges-show";
export default RouteTemplate(
<template>
<AdminBadgesShow @controller={{@controller}} @badge={{@model}} />
</template>
);