mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 05:43:38 +08:00
534e1b1b18
A generic implementation of Auth::Authenticator which stores data in the new UserAssociatedAccount model. This should help significantly reduce the duplicated logic across different auth providers.
25 lines
752 B
Ruby
25 lines
752 B
Ruby
class UserAssociatedAccount < ActiveRecord::Base
|
|
belongs_to :user
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: user_associated_accounts
|
|
#
|
|
# id :bigint(8) not null, primary key
|
|
# provider_name :string not null
|
|
# provider_uid :string not null
|
|
# user_id :integer not null
|
|
# last_used :datetime not null
|
|
# info :jsonb not null
|
|
# credentials :jsonb not null
|
|
# extra :jsonb not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# associated_accounts_provider_uid (provider_name,provider_uid) UNIQUE
|
|
# associated_accounts_provider_user (provider_name,user_id) UNIQUE
|
|
#
|