FEATURE: Expand truncated posts in the user stream

This commit is contained in:
Robin Ward
2017-06-20 15:45:26 -04:00
parent ae7734707e
commit a289ae67e1
6 changed files with 39 additions and 2 deletions

View File

@ -4,6 +4,7 @@ class AdminUserActionSerializer < ApplicationSerializer
:id,
:created_at,
:post_number,
:post_id,
:name,
:username,
:avatar_template,
@ -11,6 +12,7 @@ class AdminUserActionSerializer < ApplicationSerializer
:slug,
:title,
:category_id,
:truncated,
:excerpt,
:hidden,
:moderator_action,
@ -21,6 +23,18 @@ class AdminUserActionSerializer < ApplicationSerializer
:action_type
)
def truncated
true
end
def post_id
object.id
end
def include_truncated?
object.excerpt != object.cooked
end
def deleted
deleted_at.present?
end