Add Model changes to work with votation_types
This commit is contained in:
6
app/models/votation_set_answer.rb
Normal file
6
app/models/votation_set_answer.rb
Normal file
@@ -0,0 +1,6 @@
|
||||
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
|
||||
Reference in New Issue
Block a user