a11yist/app/models/element.rb

9 lines
175 B
Ruby
Raw Normal View History

class Element < ApplicationRecord
attr_accessor :checklist_id
2024-07-19 02:29:18 +02:00
has_rich_text :description_html
belongs_to :report
has_many :success_criteria, dependent: :destroy
end