engine/app/presenters/locomotive/editable_short_text_present...

11 lines
189 B
Ruby
Raw Normal View History

module Locomotive
class EditableShortTextPresenter < EditableElementPresenter
delegate :content, :to => :source
def included_methods
super + %w(content)
end
end
end