mirror of
https://github.com/discourse/discourse.git
synced 2025-01-17 02:42:44 +08:00
2d424676fc
Related to 5a55c9062a
The chat plugin now makes use of the plugin API that was added in the linked commit for extending the reviewables:populate rake task.
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
|