|
@@ -101,7 +101,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcProviderName"
|
|
name="oidcProviderName"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcProviderName || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcProviderName || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcProviderName(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcProviderName(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
</div>
|
|
</div>
|
|
@@ -114,7 +114,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcIssuerHost"
|
|
name="oidcIssuerHost"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcIssuerHost || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcIssuerHost || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcIssuerHost(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcIssuerHost(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -130,7 +130,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcClientId"
|
|
name="oidcClientId"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcClientId || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcClientId || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcClientId(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcClientId(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -146,7 +146,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcClientSecret"
|
|
name="oidcClientSecret"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcClientSecret || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcClientSecret || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcClientSecret(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcClientSecret(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -164,7 +164,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcAuthorizationEndpoint"
|
|
name="oidcAuthorizationEndpoint"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcAuthorizationEndpoint || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcAuthorizationEndpoint || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcAuthorizationEndpoint(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcAuthorizationEndpoint(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -180,7 +180,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcTokenEndpoint"
|
|
name="oidcTokenEndpoint"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcTokenEndpoint || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcTokenEndpoint || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcTokenEndpoint(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcTokenEndpoint(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -198,7 +198,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcRevocationEndpoint"
|
|
name="oidcRevocationEndpoint"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcRevocationEndpoint || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcRevocationEndpoint || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcRevocationEndpoint(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcRevocationEndpoint(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -216,7 +216,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcIntrospectionEndpoint"
|
|
name="oidcIntrospectionEndpoint"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcIntrospectionEndpoint || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcIntrospectionEndpoint || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcIntrospectionEndpoint(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcIntrospectionEndpoint(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -234,7 +234,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcUserInfoEndpoint"
|
|
name="oidcUserInfoEndpoint"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcUserInfoEndpoint || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcUserInfoEndpoint || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcUserInfoEndpoint(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcUserInfoEndpoint(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -252,7 +252,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcEndSessionEndpoint"
|
|
name="oidcEndSessionEndpoint"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcEndSessionEndpoint || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcEndSessionEndpoint || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcEndSessionEndpoint(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcEndSessionEndpoint(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -270,7 +270,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcRegistrationEndpoint"
|
|
name="oidcRegistrationEndpoint"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcRegistrationEndpoint || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcRegistrationEndpoint || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcRegistrationEndpoint(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcRegistrationEndpoint(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -286,7 +286,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcJWKSUri"
|
|
name="oidcJWKSUri"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcJWKSUri || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcJWKSUri || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcJWKSUri(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcJWKSUri(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -306,7 +306,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcAttrMapId"
|
|
name="oidcAttrMapId"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcAttrMapId || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcAttrMapId || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcAttrMapId(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcAttrMapId(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -322,7 +322,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcAttrMapUserName"
|
|
name="oidcAttrMapUserName"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcAttrMapUserName || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcAttrMapUserName || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcAttrMapUserName(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcAttrMapUserName(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -338,7 +338,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcAttrMapName"
|
|
name="oidcAttrMapName"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcAttrMapName || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcAttrMapName || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcAttrMapName(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcAttrMapName(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|
|
@@ -354,7 +354,7 @@ class OidcSecurityManagementContents extends React.Component {
|
|
|
className="form-control"
|
|
className="form-control"
|
|
|
type="text"
|
|
type="text"
|
|
|
name="oidcAttrMapEmail"
|
|
name="oidcAttrMapEmail"
|
|
|
- defaultValue={adminOidcSecurityContainer.state.oidcAttrMapEmail || ''}
|
|
|
|
|
|
|
+ value={adminOidcSecurityContainer.state.oidcAttrMapEmail || ''}
|
|
|
onChange={e => adminOidcSecurityContainer.changeOidcAttrMapEmail(e.target.value)}
|
|
onChange={e => adminOidcSecurityContainer.changeOidcAttrMapEmail(e.target.value)}
|
|
|
/>
|
|
/>
|
|
|
<p className="form-text text-muted">
|
|
<p className="form-text text-muted">
|