diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-25 21:35:57 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-25 21:35:57 +0100 |
commit | 893de4f5c0e852fac9a73e0c0243bc038af75f17 (patch) | |
tree | 6129d0a6e2efbfa81b26534ee5aeb65ba1261bfe /bridge/jira | |
parent | 68acfa519ab6656648d1e976db2a4190bbeb5f44 (diff) | |
download | git-bug-893de4f5c0e852fac9a73e0c0243bc038af75f17.tar.gz |
identity: bring back the login to hold that info from bridges (purely informational)
Diffstat (limited to 'bridge/jira')
-rw-r--r-- | bridge/jira/import.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bridge/jira/import.go b/bridge/jira/import.go index 21305bd5..3d6d5414 100644 --- a/bridge/jira/import.go +++ b/bridge/jira/import.go @@ -194,9 +194,10 @@ func (ji *jiraImporter) ensurePerson(repo *cache.RepoCache, user User) (*cache.I i, err = repo.NewIdentityRaw( user.DisplayName, user.EmailAddress, + user.Key, "", map[string]string{ - metaKeyJiraUser: string(user.Key), + metaKeyJiraUser: user.Key, }, ) |