a11yist/app/models/page.rb
david fd2a166025
Some checks failed
/ Run tests (push) Failing after 1m9s
/ Run system tests (push) Failing after 1m14s
/ Build, push and deploy image (push) Has been skipped
gui improvements
2024-11-01 03:59:49 +01:00

13 lines
275 B
Ruby

class Page < ApplicationRecord
belongs_to :report, touch: true
has_many :elements, dependent: :destroy
has_rich_text :comment
before_validation :set_position
private
def set_position
self.position ||= (report.pages.pluck(:position).max || 0) + 1
end
end