discourse/spec/fabricators/post_custom_field_fabricator.rb
Tarek Khalil bd6d31c9ec
FEATURE: Add IgnoredUsersSummary daily job (#7144)
* FEATURE: Add `IgnoredUsersSummary` daily job

## Why?

This is part of the [Ability to ignore a user feature](https://meta.discourse.org/t/ability-to-ignore-a-user/110254/8).

We want to:

1. Send an automatic group PM that goes out to moderators
2. When {x} users have Ignored the same user, threshold defined by a site setting, default of 5
3. Only send this message every X days which is defined by another site setting
2019-03-14 22:51:43 +00:00

6 lines
110 B
Ruby

Fabricator(:post_custom_field) do
post
name { sequence(:key) { |i| "key#{i}" } }
value "test value"
end