mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-24 23:20:39 +08:00
Enables our new eslint rules which enforce consistent i18n imports. For more info, see 0d58b40cd7
15 lines
378 B
JavaScript
Vendored
15 lines
378 B
JavaScript
Vendored
import { 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("admin.dashboard.new_features.title");
|
|
}
|
|
|
|
activate() {
|
|
this.currentUser.set("has_unseen_features", false);
|
|
}
|
|
}
|