Method: Gitlab::GithubImport::UserFinder#find_id_from_database
- Defined in:
- lib/gitlab/github_import/user_finder.rb
#find_id_from_database(id, email) ⇒ Object
Finds a GitLab user ID from the database for a given GitHub user ID or Email.
177 178 179 |
# File 'lib/gitlab/github_import/user_finder.rb', line 177 def find_id_from_database(id, email) id_for_github_id(id) || id_for_github_email(email) end |