FEATURE: show last updated date for wiki topics

This commit is contained in:
Arpit Jalan 2018-07-30 20:26:40 +05:30
parent c54b5824d4
commit 17b851cf08

View File

@ -195,7 +195,11 @@ class TopicView
def published_time
return nil if desired_post.blank?
desired_post.created_at.strftime('%FT%T%:z')
if desired_post.wiki && desired_post.post_number == 1 && desired_post.revisions.size > 0
desired_post.revisions.last.updated_at.strftime('%FT%T%:z')
else
desired_post.created_at.strftime('%FT%T%:z')
end
end
def image_url