Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' into poc
Browse files Browse the repository at this point in the history
  • Loading branch information
metanerd committed Oct 27, 2020
2 parents c65a669 + 60b3a44 commit cbdf852
Show file tree
Hide file tree
Showing 442 changed files with 21,399 additions and 12,389 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build

# Editor files
.vscode
.idea

coverage.txt
mmctl.md5.txt
Expand Down
2 changes: 1 addition & 1 deletion client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,5 @@ type Client interface {
MigrateAuthToLdap(fromAuthService string, matchField string, force bool) (bool, *model.Response)
MigrateAuthToSaml(fromAuthService string, usersMap map[string]string, auto bool) (bool, *model.Response)
GetPing() (string, *model.Response)
GetPingWithServerStatus() (string, *model.Response)
GetPingWithFullServerStatus() (map[string]string, *model.Response)
}
2 changes: 1 addition & 1 deletion commands/bot.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func botListCmdF(c client.Client, cmd *cobra.Command, args []string) error {
for {
var bots []*model.Bot
var res *model.Response
if all { //nolint:ifElseChain
if all { //nolint:gocritic
bots, res = c.GetBotsIncludeDeleted(page, perPage, "")
} else if orphaned {
bots, res = c.GetBotsOrphaned(page, perPage, "")
Expand Down
Loading

0 comments on commit cbdf852

Please sign in to comment.