mirror of
https://github.com/passbolt/go-passbolt-cli.git
synced 2025-09-13 14:59:09 +00:00
Adds permission command to get a list of permissions applied on a Resource
This commit is contained in:
parent
c454e733cf
commit
a0a117650b
3 changed files with 135 additions and 0 deletions
|
@ -3,6 +3,7 @@ package cmd
|
|||
import (
|
||||
"github.com/passbolt/go-passbolt-cli/folder"
|
||||
"github.com/passbolt/go-passbolt-cli/group"
|
||||
"github.com/passbolt/go-passbolt-cli/permission"
|
||||
"github.com/passbolt/go-passbolt-cli/resource"
|
||||
"github.com/passbolt/go-passbolt-cli/user"
|
||||
"github.com/spf13/cobra"
|
||||
|
@ -29,4 +30,5 @@ func init() {
|
|||
listCmd.AddCommand(folder.FolderListCmd)
|
||||
listCmd.AddCommand(group.GroupListCmd)
|
||||
listCmd.AddCommand(user.UserListCmd)
|
||||
listCmd.AddCommand(permission.PermissionListCmd)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue