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

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

module API
  module Entities
    class UserPath < UserBasic
      include RequestAwareEntity
      include UserStatusTooltip

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

API::Entities::UserPath.prepend_mod_with('API::Entities::UserPath')