mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 05:40:52 +08:00
7 lines
147 B
Ruby
7 lines
147 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:watched_word) do
|
|
word { sequence(:word) { |i| "word#{i}" } }
|
|
action WatchedWord.actions[:block]
|
|
end
|