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

user.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: adf954ab02d867b2363dbc60aea11ed9185084b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module API
  module Entities
    class User < UserBasic
      include UsersHelper
      expose :created_at, if: ->(user, opts) { Ability.allowed?(opts[:current_user], :read_user_profile, user) }
      expose :bio, :location, :public_email, :skype, :linkedin, :twitter, :website_url, :organization, :job_title
      expose :work_information do |user|
        work_information(user)
      end
    end
  end
end