Aura Page custom_field

custom_field

Creates a custom field and adds getters/setters for it.

Example

Creating custom fields

[app/models/page-ext.rb (rb)]
class Page
  custom_field :recipe
end

p = Page.new
p.recipe = "Chili Con Carne"