mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
bd6d31c9ec
* 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
6 lines
110 B
Ruby
6 lines
110 B
Ruby
Fabricator(:post_custom_field) do
|
|
post
|
|
name { sequence(:key) { |i| "key#{i}" } }
|
|
value "test value"
|
|
end
|