We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac0b264 commit 934a55aCopy full SHA for 934a55a
src/shared/GitLab/GitLabHostProvider.cs
@@ -4,6 +4,7 @@
4
using GitCredentialManager;
5
using GitCredentialManager.Authentication.OAuth;
6
using System.Net.Http.Headers;
7
+using System.Linq;
8
9
namespace GitLab
10
{
@@ -69,6 +70,10 @@ public override bool IsSupported(InputArguments input)
69
70
return true;
71
}
72
73
+ if (input.WwwAuth.Any(x => x.Contains("realm=\"GitLab\""))) {
74
+ return true;
75
+ }
76
+
77
return false;
78
79
0 commit comments