mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05: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
5 lines
140 B
Ruby
5 lines
140 B
Ruby
class AddAvatarUrlToFacebookInfo < ActiveRecord::Migration
|
|
def change
|
|
add_column :facebook_user_infos, :avatar_url, :string
|
|
end
|
|
end
|