2019-05-12 21:55:44 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-05-08 10:20:51 -04:00
|
|
|
class ReviewableClaimedTopic < ActiveRecord::Base
|
|
|
|
belongs_to :topic
|
|
|
|
belongs_to :user
|
2020-01-09 12:32:05 -05:00
|
|
|
validates_uniqueness_of :topic
|
2019-05-08 10:20:51 -04:00
|
|
|
|
|
|
|
def self.claimed_hash(topic_ids)
|
|
|
|
result = {}
|
|
|
|
if SiteSetting.reviewable_claiming != "disabled"
|
|
|
|
ReviewableClaimedTopic
|
|
|
|
.where(topic_id: topic_ids)
|
|
|
|
.includes(:user)
|
|
|
|
.each { |rct| result[rct.topic_id] = rct.user }
|
|
|
|
end
|
|
|
|
result
|
|
|
|
end
|
|
|
|
end
|
2019-05-13 10:24:24 -04:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: reviewable_claimed_topics
|
|
|
|
#
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# topic_id :integer not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_reviewable_claimed_topics_on_topic_id (topic_id) UNIQUE
|
|
|
|
#
|