mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-03 14:24:23 +01:00
8 lines
281 B
Ruby
8 lines
281 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# OpenIdConnectProvider is a special type of AuthProvider which provides authentication through an external SSO server using
|
||
|
# the OpenID Connect protocol.
|
||
|
class OpenIdConnectProvider < ApplicationRecord
|
||
|
has_one :auth_provider, as: :providable
|
||
|
end
|