aboutsummaryrefslogtreecommitdiffstats
path: root/app/decorators/models/sidebar_post_decorator.rb
blob: 93353bb0be720192ead0b81e980a1aff8b00275f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
require 'delegate'

class SidebarPostDecorator < SimpleDelegator
  def initialize(post)
    super(post)
  end

  def body
    super.truncate(64)
  end
end