Method: Form#schema
- Defined in:
- lib/generators/install/templates/app/models/form.rb
#schema ⇒ Object
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/generators/install/templates/app/models/form.rb', line 14 def schema if !@_schema.nil? @_schema elsif self.id.nil? "" else @_schema = form_schemas.first.data @_schema end end |