mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
Currently any spam detected by Akismet by non-members via API will be logged in a separate table in the admin page. Closes #5612
6 lines
96 B
Ruby
6 lines
96 B
Ruby
class SpamReport < ActiveRecord::Base
|
|
belongs_to :user
|
|
|
|
validates :user, presence: true
|
|
end
|