diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-02-04 05:42:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-04 05:42:13 +0100 |
commit | 26f21fd5a03b1c6407cd81c58481288d06958ad3 (patch) | |
tree | ef7cf0e00f4bfddfff65d4c28d38fe082ec6de37 /app/models/identity.rb | |
parent | 9da81a16391edfcbda9c748dcd519fb3ebd765e5 (diff) |
CAS + SAML authentication feature (#6425)
* Cas authentication feature * Config * Remove class_eval + Omniauth initializer * Codeclimate review * Codeclimate review 2 * Codeclimate review 3 * Remove uid/email reconciliation * SAML authentication * Clean up code * Improve login form * Fix code style issues * Add locales
Diffstat (limited to 'app/models/identity.rb')
-rw-r--r-- | app/models/identity.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/models/identity.rb b/app/models/identity.rb new file mode 100644 index 000000000..a5e0c09ec --- /dev/null +++ b/app/models/identity.rb @@ -0,0 +1,22 @@ +# frozen_string_literal: true +# == Schema Information +# +# Table name: identities +# +# id :integer not null, primary key +# user_id :integer +# provider :string default(""), not null +# uid :string default(""), not null +# created_at :datetime not null +# updated_at :datetime not null +# + +class Identity < ApplicationRecord + belongs_to :user, dependent: :destroy + validates :uid, presence: true, uniqueness: { scope: :provider } + validates :provider, presence: true + + def self.find_for_oauth(auth) + find_or_create_by(uid: auth.uid, provider: auth.provider) + end +end |