2020-03-23 11:09:36 -04:00
|
|
|
# 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
|
2020-05-12 08:09:47 -04:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
API::Entities::UserPath.prepend_mod_with('API::Entities::UserPath')
|