a11yist/app/models/success_criterion.rb

9 lines
184 B
Ruby
Raw Normal View History

class SuccessCriterion < ApplicationRecord
enum :result, %i[passed failed not_applicable]
2024-07-19 02:29:18 +02:00
has_rich_text :comment_html
has_rich_text :description_html
belongs_to :element
end