mirror of
https://github.com/discourse/discourse.git
synced 2025-01-16 21:52:45 +08:00
22 lines
562 B
Ruby
22 lines
562 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscourseDev
|
||
|
class ReviewableMessage < Reviewable
|
||
|
def populate!
|
||
|
channel = CategoryChannel.new.create!
|
||
|
message = Message.new(channel_id: channel.id, count: 1).create!
|
||
|
user = @users.sample
|
||
|
|
||
|
::Chat::FlagMessage.call(
|
||
|
guardian: user.guardian,
|
||
|
params: {
|
||
|
channel_id: channel.id,
|
||
|
message_id: message.id,
|
||
|
flag_type_id:
|
||
|
ReviewableScore.types.slice(:off_topic, :inappropriate, :spam, :illegal).values.sample,
|
||
|
},
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|