users: add missing tab completion for 'log' command

This commit is contained in:
Juerd Waalboer 2023-11-02 03:58:02 +01:00
parent 78d9cd916f
commit 0f5cdca0f9

View file

@ -5,7 +5,7 @@ HELP "list" => "List accounts and balances";
HELP "log" => "View transaction log";
HELP "shame" => "Display Hall of Shame (negative balances)";
sub command :Tab(list,ls,shame,USERS) ($self, $cart, $command, @) {
sub command :Tab(list,ls,shame,log,USERS) ($self, $cart, $command, @) {
return $self->list if $command eq 'list';
return $self->list if $command eq 'ls';
return $self->shame if $command eq 'shame';