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

user.rb « representation « github « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18591380e2503ccd540e640a901e4cef2b10d393 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Github
  module Representation
    class User < Representation::Base
      def email
        return @email if defined?(@email)

        @email = Github::User.new(username, options).get.fetch('email', nil)
      end

      def username
        raw['login']
      end
    end
  end
end