Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/jira_import/users_mapper.rb')
-rw-r--r--app/services/jira_import/users_mapper.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/app/services/jira_import/users_mapper.rb b/app/services/jira_import/users_mapper.rb
deleted file mode 100644
index c3cbeb157bd..00000000000
--- a/app/services/jira_import/users_mapper.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-# frozen_string_literal: true
-
-module JiraImport
- class UsersMapper
- attr_reader :project, :jira_users
-
- def initialize(project, jira_users)
- @project = project
- @jira_users = jira_users
- end
-
- def execute
- jira_users.to_a.map do |jira_user|
- {
- jira_account_id: jira_user['accountId'],
- jira_display_name: jira_user['displayName'],
- jira_email: jira_user['emailAddress']
- }.merge(match_user(jira_user))
- end
- end
-
- private
-
- # TODO: Matching user by email and displayName will be done as the part
- # of follow-up issue: https://gitlab.com/gitlab-org/gitlab/-/issues/219023
- def match_user(jira_user)
- { gitlab_id: nil, gitlab_username: nil, gitlab_name: nil }
- end
- end
-end