Skip to content

Commit

Permalink
Merge pull request #361 from microsoft/main
Browse files Browse the repository at this point in the history
Cut another another release
  • Loading branch information
mjcheetham authored Jun 2, 2021
2 parents 2bc3086 + dd0752d commit 95a180a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shared/GitHub.UI/Commands/CredentialsCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ public CredentialsCommand(ICommandContext context)
Handler = CommandHandler.Create<string, string, bool, bool, bool>(ExecuteAsync);
}

private async Task<int> ExecuteAsync(string enterpriseUrl, string userName, bool basic, bool browser, bool pat)
private async Task<int> ExecuteAsync(string enterpriseUrl, string userName, bool basic, bool oauth, bool pat)
{
var viewModel = new CredentialsViewModel(Context.Environment)
{
ShowBrowserLogin = browser,
ShowBrowserLogin = oauth,
ShowTokenLogin = pat,
ShowBasicLogin = basic,
};
Expand Down

0 comments on commit 95a180a

Please sign in to comment.