mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-01 05:51:37 +08:00
7 lines
180 B
Ruby
7 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
|