ivanzotov/constructor

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

Summary

Maintainability
A
0 mins
Test Coverage
module ConstructorPages
  module Types
    # HTML type. Render ckeditor wysiwyg.
    class HtmlType < ActiveRecord::Base
      belongs_to :field
      belongs_to :page, touch: true

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