mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 22:24:24 +08:00
8 lines
152 B
Ruby
8 lines
152 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Fabricator(:flag_post_action, from: :post_action) do
|
||
|
user
|
||
|
post
|
||
|
post_action_type_id PostActionType.types[:spam]
|
||
|
end
|