debian-mirror-gitlab/lib/gitlab/phabricator_import/representation/user.rb
2019-09-30 21:07:59 +05:30

26 lines
385 B
Ruby

# frozen_string_literal: true
module Gitlab
module PhabricatorImport
module Representation
class User
def initialize(json)
@json = json
end
def phabricator_id
json['phid']
end
def username
json['fields']['username']
end
private
attr_reader :json
end
end
end
end