Files
grecia/app/models/votation_set_answer.rb
2019-10-24 18:11:58 +02:00

7 lines
222 B
Ruby

class VotationSetAnswer < ApplicationRecord
belongs_to :votation_type
belongs_to :author, -> { with_hidden }, class_name: "User", foreign_key: "author_id"
scope :by_author, -> (author) { where(author: author) }
end