mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 16:29:52 +01:00
6 lines
161 B
Ruby
6 lines
161 B
Ruby
class ModerationVote < ApplicationRecord
|
|
belongs_to :user
|
|
belongs_to :report
|
|
validates :user_id, presence: true
|
|
validates :report_id, presence: true
|
|
end
|