Merge pull request #5331 from kensible/4657-saml-key-cert

Changed inputs to textareas, support key and cert
This commit is contained in:
kensible
2017-02-14 09:39:37 -05:00
committed by GitHub

View File

@@ -24,11 +24,15 @@ export default ['i18n', function(i18n) {
reset: 'SOCIAL_AUTH_SAML_SP_ENTITY_ID'
},
SOCIAL_AUTH_SAML_SP_PUBLIC_CERT: {
type: 'text',
type: 'textarea',
rows: 6,
elementClass: 'Form-monospace',
reset: 'SOCIAL_AUTH_SAML_SP_PUBLIC_CERT'
},
SOCIAL_AUTH_SAML_SP_PRIVATE_KEY: {
type: 'sensitive',
type: 'textarea',
rows: 6,
elementClass: 'Form-monospace',
hasShowInputButton: true,
reset: 'SOCIAL_AUTH_SAML_SP_PRIVATE_KEY'
},