diff options
author | Valery Sizov <valery@gitlab.com> | 2016-12-14 12:35:10 +0200 |
---|---|---|
committer | Valery Sizov <valery@gitlab.com> | 2016-12-14 12:35:13 +0200 |
commit | 8f0cef0b6e5e950efdf3ebfe8f9f846095fff9d9 (patch) | |
tree | 178908c7184444bd71b23e62727b69a2e324d6af /lib/bitbucket/representation/pull_request.rb | |
parent | f20ea1f5cb354db0afe18e4021e1d2fb439c2e06 (diff) | |
download | gitlab-ce-8f0cef0b6e5e950efdf3ebfe8f9f846095fff9d9.tar.gz |
BB importer: Refactoring user importing logic[ci skip]
Diffstat (limited to 'lib/bitbucket/representation/pull_request.rb')
-rw-r--r-- | lib/bitbucket/representation/pull_request.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bitbucket/representation/pull_request.rb b/lib/bitbucket/representation/pull_request.rb index 96992003d24..e37c9a62c0e 100644 --- a/lib/bitbucket/representation/pull_request.rb +++ b/lib/bitbucket/representation/pull_request.rb @@ -2,7 +2,7 @@ module Bitbucket module Representation class PullRequest < Representation::Base def author - user_representation(raw.fetch('author', {})) + raw.dig('author', 'username') end def description |