11 lines
193 B
Ruby
11 lines
193 B
Ruby
module Locomotive
|
|
class EditableLongText < EditableShortText
|
|
|
|
## methods ##
|
|
|
|
def as_json(options = {})
|
|
Locomotive::EditableLongTextPresenter.new(self).as_json
|
|
end
|
|
|
|
end
|
|
end |