timothyandrew/blink

View on GitHub
app/decorators/general_note_decorator.rb

Summary

Maintainability
A
0 mins
Test Coverage
class GeneralNoteDecorator < Draper::Decorator
  delegate_all

  def title
    model.title || "<no title>"
  end

  def updated_at
    date = model.updated_at.strftime("%b %-d, %Y")
    "Last updated on #{date}"
  end
end