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.
2 parents ac0b264 + f4f3689 commit d0ae441Copy full SHA for d0ae441
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,11 @@ public override bool IsSupported(InputArguments input)
69
70
return true;
71
}
72
73
+ if (input.WwwAuth.Any(x => x.Contains("realm=\"GitLab\"")))
74
+ {
75
+ return true;
76
+ }
77
+
78
return false;
79
80
0 commit comments