mirror of
https://github.com/discourse/discourse.git
synced 2025-07-14 01:10:53 +08:00

As part of the review queue refresh, we'll be adding the ability for moderators to make notes on individual reviewable items. As a first step, this change adds the new model and associated backend code.
8 lines
220 B
Ruby
8 lines
220 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:reviewable_note) do
|
|
content { "This is a sample reviewable note for testing purposes." }
|
|
user { Fabricate(:admin) }
|
|
reviewable { Fabricate(:reviewable_flagged_post) }
|
|
end
|