1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/views/api/auth_providers/active.json.jbuilder

14 lines
453 B
Plaintext
Raw Normal View History

# frozen_string_literal: true
2016-03-23 18:39:41 +01:00
json.partial! 'api/auth_providers/auth_provider', auth_provider: @provider
json.previous_provider do
json.partial! 'api/auth_providers/auth_provider', auth_provider: @previous if @previous
end
2016-03-23 18:39:41 +01:00
json.mapping @provider.sso_fields
json.link_to_sso_profile @provider.link_to_sso_profile
if @provider.providable_type == DatabaseProvider.name
json.link_to_sso_connect '/#'
else
json.link_to_sso_connect '/sso-redirect'
2016-03-23 18:39:41 +01:00
end