mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
8 lines
182 B
Ruby
8 lines
182 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:username_block) do
|
|
username { sequence(:email) { |i| "#{i}#{Faker::Internet.username}" } }
|
|
exact false
|
|
allow_with_approval false
|
|
end
|