2020-04-22 19:07:51 +05:30
|
|
|
# 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-24 23:13:21 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
API::Entities::UserPath.prepend_mod_with('API::Entities::UserPath')
|