mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-09-13 14:59:09 +00:00
add shellescapse, update deps
This commit is contained in:
parent
bf4a0c8d4a
commit
f373792c06
10 changed files with 182 additions and 85 deletions
|
@ -5,6 +5,7 @@ import (
|
|||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/alessio/shellescape"
|
||||
"github.com/speatzle/go-passbolt-cli/util"
|
||||
"github.com/speatzle/go-passbolt/api"
|
||||
"github.com/spf13/cobra"
|
||||
|
@ -84,13 +85,13 @@ func UserList(cmd *cobra.Command, args []string) error {
|
|||
case "id":
|
||||
entry[i] = user.ID
|
||||
case "username":
|
||||
entry[i] = user.Username
|
||||
entry[i] = shellescape.StripUnsafe(user.Username)
|
||||
case "firstname":
|
||||
entry[i] = user.Profile.FirstName
|
||||
entry[i] = shellescape.StripUnsafe(user.Profile.FirstName)
|
||||
case "lastname":
|
||||
entry[i] = user.Profile.LastName
|
||||
entry[i] = shellescape.StripUnsafe(user.Profile.LastName)
|
||||
case "role":
|
||||
entry[i] = user.Role.Name
|
||||
entry[i] = shellescape.StripUnsafe(user.Role.Name)
|
||||
default:
|
||||
cmd.SilenceUsage = false
|
||||
return fmt.Errorf("Unknown Column: %v", columns[i])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue