a11yist/app/models/element.rb
2024-07-20 16:55:10 +02:00

10 lines
231 B
Ruby

class Element < ApplicationRecord
attr_accessor :checklist_id
has_rich_text :description_html
belongs_to :report, touch: true
has_many :success_criteria, dependent: :destroy
validates :path, :title, presence: true
end