engine/app/models/locomotive/editable_long_text.rb

11 lines
193 B
Ruby
Raw Permalink Normal View History

module Locomotive
class EditableLongText < EditableShortText
## methods ##
def as_json(options = {})
Locomotive::EditableLongTextPresenter.new(self).as_json
end
end
end