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

user_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 656900bb8af5ae809cb960b63e625fb360dc40bf (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class UserEntity < API::Entities::UserBasic
  include RequestAwareEntity
  include UserStatusTooltip

  expose :path do |user|
    user_path(user)
  end
end