ea72d53ec0
This simplifies the "Report button" to not use open a dropdown and adds a tooltip on this button. This also removes an extra spec and adds missing specs.
21 lines
487 B
Ruby
21 lines
487 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: abuse_reports
|
|
#
|
|
# id :integer not null, primary key
|
|
# reporter_id :integer
|
|
# user_id :integer
|
|
# message :text
|
|
# created_at :datetime
|
|
# updated_at :datetime
|
|
#
|
|
|
|
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: true
|
|
end
|