UX: Add title token for What's New admin page (#28476)

Followup e60b808f49,
I missed adding it here.
This commit is contained in:
Martin Brennan 2024-08-22 14:36:32 +10:00 committed by GitHub
parent e60b808f49
commit ebbe23e4d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -1,9 +1,14 @@
import { inject as service } from "@ember/service";
import DiscourseRoute from "discourse/routes/discourse";
import I18n from "discourse-i18n";
export default class AdminWhatsNew extends DiscourseRoute {
@service currentUser;
titleToken() {
return I18n.t("admin.dashboard.new_features.title");
}
activate() {
this.currentUser.set("has_unseen_features", false);
}