Module: Presenters::Timeable

Overview

ActiveSupport::Concern mixin: timeable.

Instance Method Summary collapse

Instance Method Details

#created_atObject



8
9
10
# File 'app/concerns/presenters/timeable.rb', line 8

def created_at
  h.render_datetime(r.created_at)
end

#updated_atObject



12
13
14
# File 'app/concerns/presenters/timeable.rb', line 12

def updated_at
  h.render_datetime(r.updated_at)
end