mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
7099f1f317
- Ability to set the address as a mandatory field - The address is new requested when creating an account - The profile completion page is less fuzzy for people landing on it without enabled SSO
16 lines
546 B
Ruby
16 lines
546 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|
|
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'
|
|
end
|
|
|
|
json.domain @provider.providable.domain if @provider.providable_type == OAuth2Provider.name
|