mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-08 23:46:14 +01:00
9 lines
220 B
Ruby
9 lines
220 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'omniauth-saml'
|
||
|
|
||
|
# Authentication strategy provided trough SAML
|
||
|
class OmniAuth::Strategies::SsoSamlProvider < OmniAuth::Strategies::SAML
|
||
|
include OmniAuth::DataMapping::Mapper
|
||
|
end
|