debian-mirror-gitlab/lib/api/entities/user.rb

15 lines
440 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module API
module Entities
class User < UserBasic
2020-04-22 19:07:51 +05:30
include UsersHelper
2020-03-13 15:44:24 +05:30
expose :created_at, if: ->(user, opts) { Ability.allowed?(opts[:current_user], :read_user_profile, user) }
2020-04-08 14:13:33 +05:30
expose :bio, :location, :public_email, :skype, :linkedin, :twitter, :website_url, :organization, :job_title
2020-04-22 19:07:51 +05:30
expose :work_information do |user|
work_information(user)
end
2020-03-13 15:44:24 +05:30
end
end
end