mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 21:19:41 -06:00
5b3cd3fac9
FIX: warning about popup dimensions when using facebook login Rules are: - On account creation we always import - If you already have an avatar uploaded, nothing is changed - If you have no avatar uploaded, we upload from facebook on login - If you have no avatar uploaded, we select facebook unless gravatar already selected This also fixes SSO issues where on account creation accounts had missing avatar uploads
6 lines
140 B
Ruby
6 lines
140 B
Ruby
class AddAvatarUrlToFacebookInfo < ActiveRecord::Migration
|
|
def change
|
|
add_column :facebook_user_infos, :avatar_url, :string
|
|
end
|
|
end
|