Files
timeoverflow/app/models/document.rb
2023-04-01 21:59:10 +02:00

10 lines
223 B
Ruby

class Document < ApplicationRecord
belongs_to :documentable, polymorphic: true, optional: true
translates :title, :content
def self.terms_and_conditions
where(label: "t&c", documentable_id: nil).first
end
end