16 lines
308 B
Ruby
16 lines
308 B
Ruby
# 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_if_ee('EE::API::Entities::UserPath')
|