Welcome to mirror list, hosted at ThFree Co, Russian Federation.

spam_report.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cdc7321b08e7cd5091d1a8cc23b5179f23f79e02 (plain)
1
2
3
4
5
class SpamReport < ActiveRecord::Base
  belongs_to :user

  validates :user, presence: true
end