Skip to content

Commit

Permalink
feat: add display name column to admin users list
Browse files Browse the repository at this point in the history
  • Loading branch information
davwheat committed Feb 21, 2023
1 parent 0da069b commit 07bc58a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
9 changes: 9 additions & 0 deletions framework/core/js/src/admin/components/UserListPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,15 @@ export default class UserListPage extends AdminPage {
90
);

columns.add(
'displayName',
{
name: app.translator.trans('core.admin.users.grid.columns.display_name.title'),
content: (user: User) => user.displayName(),
},
85
);

columns.add(
'joinDate',
{
Expand Down
3 changes: 3 additions & 0 deletions framework/core/locale/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,9 @@ core:

grid:
columns:
display_name:
title: Display name

edit_user:
button: => core.ref.edit
title: => core.ref.edit_user
Expand Down

0 comments on commit 07bc58a

Please sign in to comment.