ivanzotov/constructor

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

Summary

Maintainability
A
0 mins
Test Coverage
module ConstructorPages
  module Types
    # Date time. Render as three select lists (day, month, year).
    class DateType < ActiveRecord::Base
      belongs_to :field
      belongs_to :page, touch: true
    end
  end
end