mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-28 16:55:47 +08:00
8 lines
241 B
Ruby
Vendored
8 lines
241 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
Fabricator(:user_associated_account) do
|
|
provider_name "meecrosof"
|
|
provider_uid { sequence(:key) { |i| "#{i + 1}" } }
|
|
user
|
|
info { |attrs| { name: attrs[:user].username, email: attrs[:user].email } }
|
|
end
|