diff options
author | Michael Muré <batolettre@gmail.com> | 2020-01-07 22:07:25 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-08 17:18:28 +0100 |
commit | 26f0152384f77d2bfd16c6762f5618bc966809a6 (patch) | |
tree | 82854841d2865e1bb52e08beeb392507495e7525 /bridge/gitlab/config.go | |
parent | db893494bb1492a3d9e32787a5ada1dd8f639ef3 (diff) | |
download | git-bug-26f0152384f77d2bfd16c6762f5618bc966809a6.tar.gz git-bug-26f0152384f77d2bfd16c6762f5618bc966809a6.zip |
WIP
Diffstat (limited to 'bridge/gitlab/config.go')
-rw-r--r-- | bridge/gitlab/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/gitlab/config.go b/bridge/gitlab/config.go index 5e345b31..0758074c 100644 --- a/bridge/gitlab/config.go +++ b/bridge/gitlab/config.go @@ -212,7 +212,7 @@ func validateBaseUrl(baseUrl string) (bool, error) { func promptTokenOptions(repo repository.RepoConfig, userId entity.Id, baseUrl string) (auth.Credential, error) { for { - creds, err := auth.List(repo, auth.WithUserId(userId), auth.WithTarget(target), auth.WithKind(auth.KindToken)) + creds, err := auth.List(repo, auth.WithTarget(target), auth.WithKind(auth.KindToken)) if err != nil { return nil, err } |