gitlab-org--gitlab-foss/lib/api/entities/user_path.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
307 B
Ruby
Raw Permalink Normal View History

# 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')