mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-08 03:13:37 +01:00
7 lines
162 B
Ruby
7 lines
162 B
Ruby
|
class ModerationVote < ActiveRecord::Base
|
||
|
belongs_to :user
|
||
|
belongs_to :report
|
||
|
validates :user_id, presence: true
|
||
|
validates :report_id, presence: true
|
||
|
end
|