-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix code scanning issues (#145) * Fix #143 add usergroup filtering to cybr safes list (#146) * Add query param support to cybr safes list-members * fix go-lint issue * Add FilteredSafes func & --user --group cmd args * Update README * rm & ignore .dccache * Bump version from 1.0.9-beta -> 1.0.10-beta * Update binaries to current
- Loading branch information
1 parent
ded06e1
commit 5d68868
Showing
17 changed files
with
184 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,5 @@ | |
# Dependency directories (remove the comment below to include it) | ||
# vendor/ | ||
|
||
.DS_Store | ||
.DS_Store | ||
.dccache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package queries | ||
|
||
// ListSafeMembers represents valid query parameters when listing safe members | ||
type ListSafeMembers struct { | ||
Search string `query_key:"search"` | ||
Sort string `query_key:"sort"` | ||
Offset int `query_key:"offset"` | ||
Limit int `query_key:"limit"` | ||
Filter string `query_key:"filter"` | ||
} |
Oops, something went wrong.