mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +08:00
208005f9c9
Changes to functionality - Removed syncing of user metadata including gender, location etc. These are no longer available to standard Facebook applications. - Removed the remote 'revoke' functionality. No other providers have it, and it does not appear to be standard practice in other apps. - The 'facebook_no_email' event is no longer logged. The system can cope fine with a missing email address. Data is migrated to the new user_associated_accounts table. facebook_user_infos can be dropped once we are confident the data has been migrated successfully.
28 lines
591 B
Ruby
28 lines
591 B
Ruby
class MigrateFacebookUserInfo < ActiveRecord::Migration[5.2]
|
|
def up
|
|
execute <<~SQL
|
|
INSERT INTO user_associated_accounts (
|
|
provider_name,
|
|
provider_uid,
|
|
user_id,
|
|
info,
|
|
last_used,
|
|
created_at,
|
|
updated_at
|
|
) SELECT
|
|
'facebook',
|
|
facebook_user_id,
|
|
user_id,
|
|
json_build_object('email', email, 'first_name', first_name, 'last_name', last_name, 'name', name),
|
|
updated_at,
|
|
created_at,
|
|
updated_at
|
|
FROM facebook_user_infos
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|