forked from External/greenlight
omniauth strategy
This commit is contained in:
9
app/models/user.rb
Normal file
9
app/models/user.rb
Normal file
@ -0,0 +1,9 @@
|
||||
class User < ApplicationRecord
|
||||
|
||||
def self.from_omniauth(auth_hash)
|
||||
user = find_or_create_by(uid: auth_hash['uid'], provider: auth_hash['provider'])
|
||||
user.name = auth_hash['info']['name']
|
||||
user.save!
|
||||
user
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user