Skip to content

Commit 3e4f562

Browse files
committed
feat: display auth plugin in a new column of the user listing tree
Refs #1728
1 parent 07112a0 commit 3e4f562

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

source/usermanager.lfm

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,16 @@ object UserManagerForm: TUserManagerForm
6565
item
6666
Position = 0
6767
Text = 'Username'
68-
Width = 140
68+
Width = 90
6969
end
7070
item
7171
Position = 1
7272
Text = 'Host'
7373
Width = 80
74+
end
75+
item
76+
Position = 2
77+
Text = 'Plugin'
7478
end>
7579
Header.Height = 26
7680
Header.Options = [hoAutoResize, hoColumnResize, hoDblClickResize, hoDrag, hoHotTrack, hoShowSortGlyphs, hoVisible, hoDisableAnimatedResize]

source/usermanager.pas

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1005,6 +1005,7 @@ procedure TUserManagerForm.listUsersGetText(Sender: TBaseVirtualTree; Node: PVir
10051005
case Column of
10061006
0: CellText := User.Username;
10071007
1: CellText := User.Host;
1008+
2: CellText := User.Plugin;
10081009
end;
10091010
end;
10101011

0 commit comments

Comments
 (0)