10 lines
231 B
Ruby
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
|