ivanzotov/constructor

View on GitHub
pages/app/models/constructor_pages/types/text_type.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ConstructorPages
  module Types
    # Text type. Render textarea.
    class TextType < ActiveRecord::Base
      belongs_to :field
      belongs_to :page, touch: true

      before_save -> { self.value ||= '' }
    end
  end
end