mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:54:59 +08:00
8 lines
180 B
Ruby
8 lines
180 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Fabricator(:associated_group) do
|
||
|
name { sequence(:name) { |n| "group_#{n}" } }
|
||
|
provider_name "google"
|
||
|
provider_id { SecureRandom.hex(20) }
|
||
|
end
|