mirror of
https://github.com/discourse/discourse.git
synced 2024-12-12 12:53:40 +08:00
88af23e1ca
This PR modernizes the user fields area of the admin UI. It is largely based on the work on the emoji section.
9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
import DiscourseRoute from "discourse/routes/discourse";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
export default class AdminUserFieldsRoute extends DiscourseRoute {
|
|
titleToken() {
|
|
return i18n("admin.user_fields.title");
|
|
}
|
|
}
|