mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
41 lines
848 B
Ruby
41 lines
848 B
Ruby
class UserActionSerializer < ApplicationSerializer
|
|
|
|
attributes :action_type,
|
|
:created_at,
|
|
:excerpt,
|
|
:avatar_template,
|
|
:acting_avatar_template,
|
|
:slug,
|
|
:topic_id,
|
|
:target_user_id,
|
|
:target_name,
|
|
:target_username,
|
|
:post_number,
|
|
:reply_to_post_number,
|
|
:username,
|
|
:name,
|
|
:user_id,
|
|
:acting_username,
|
|
:acting_name,
|
|
:acting_user_id,
|
|
:title
|
|
|
|
|
|
def excerpt
|
|
PrettyText.excerpt(object.cooked,300) if object.cooked
|
|
end
|
|
|
|
def avatar_template
|
|
User.avatar_template(object.email)
|
|
end
|
|
|
|
def acting_avatar_template
|
|
User.avatar_template(object.acting_email)
|
|
end
|
|
|
|
def slug
|
|
Slug.for(object.title)
|
|
end
|
|
|
|
end
|