2018-07-19 14:43:13 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-04 08:08:58 -04:00
|
|
|
class UserEntity < API::Entities::UserBasic
|
2017-06-02 09:24:42 -04:00
|
|
|
include RequestAwareEntity
|
2018-07-16 12:18:52 -04:00
|
|
|
include UserStatusTooltip
|
2017-06-02 09:24:42 -04:00
|
|
|
|
|
|
|
expose :path do |user|
|
|
|
|
user_path(user)
|
|
|
|
end
|
2016-11-04 08:08:58 -04:00
|
|
|
end
|