orientation/orientation

View on GitHub
app/decorators/article_endorsement_decorator.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ArticleEndorsementDecorator < ApplicationDecorator
  delegate_all

  def created_at
    object.created_at.to_formatted_s(:long)
  end

  def user
    object.user.decorate
  end
end