debian-mirror-gitlab/app/models/abuse_report.rb

10 lines
273 B
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
class AbuseReport < ActiveRecord::Base
belongs_to :reporter, class_name: "User"
belongs_to :user
validates :reporter, presence: true
validates :user, presence: true
validates :message, presence: true
validates :user_id, uniqueness: { scope: :reporter_id }
end