a11yist/app/models/report.rb
2024-11-11 04:04:13 +01:00

10 lines
252 B
Ruby

# frozen_string_literal: true
class Report < ApplicationRecord
has_many :pages, -> { order(:position) }, dependent: :destroy
has_many :elements, through: :pages, dependent: :destroy
has_rich_text :comment
validates :name, presence: true
end