Skip to content

Commit

Permalink
delete team locks
Browse files Browse the repository at this point in the history
  • Loading branch information
miguel-crespo-fdc committed Aug 22, 2024
1 parent a22c8ff commit 2f94165
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/pkg/locks/team_lock_parsing.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func convertToCreateTeamLockParams(cmdArgs CreateTeamLockCommandLineArguments) (
LockId: cmdArgs.lockId.Values[0],
Environment: cmdArgs.environment.Values[0],
Team: cmdArgs.team.Values[0],
UseDexAuthentication: false, //For now there is no ambiguity as to which endpoint to use
UseDexAuthentication: true, //For now there is no ambiguity as to which endpoint to use
Message: "",
}
if len(cmdArgs.message.Values) != 0 {
Expand Down Expand Up @@ -160,7 +160,7 @@ func convertToDeleteTeamLockParams(cmdArgs DeleteTeamLockCommandLineArguments) (
LockId: cmdArgs.lockId.Values[0],
Environment: cmdArgs.environment.Values[0],
Team: cmdArgs.team.Values[0],
UseDexAuthentication: false,
UseDexAuthentication: true,
}
return &rp, nil
}
Expand Down

0 comments on commit 2f94165

Please sign in to comment.