mirror of
https://ghfast.top/https://github.com/discourse/discourse-akismet.git
synced 2026-07-15 11:36:24 +08:00
10 lines
230 B
Ruby
10 lines
230 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:reviewable_akismet_post) do
|
|
reviewable_by_moderator true
|
|
type 'ReviewableAkismetPost'
|
|
created_by { Fabricate(:user) }
|
|
topic
|
|
target_type 'Post'
|
|
target { Fabricate(:post) }
|
|
end
|