13 lines
262 B
Ruby
13 lines
262 B
Ruby
class Page < ApplicationRecord
|
|
belongs_to :report
|
|
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
|