Skip to content

Commit

Permalink
fix: edit params mapping correct
Browse files Browse the repository at this point in the history
  • Loading branch information
mjatin-dev committed Mar 16, 2022
1 parent 0b2df8e commit 59fcf22
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import { Container} from '../../../../app/components'
import { Container } from '../../../../app/components'
import GluuBooleanSelectBox from '../../../../app/routes/Apps/Gluu/GluuBooleanSelectBox'
import GluuInputRow from '../../../../app/routes/Apps/Gluu/GluuInputRow'
import GluuTypeAheadWithAdd from '../../../../app/routes/Apps/Gluu/GluuTypeAheadWithAdd'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ function ClientWizardForm({
jwksUri: client.jwksUri,
jwks: client.jwks,
expirable: [],
expirationDate: new Date(),
expirationDate: client.expirationDate,
softwareStatement: client.softwareStatement,
softwareVersion: client.softwareVersion,
softwareId: client.softwareId,
Expand All @@ -183,6 +183,16 @@ function ClientWizardForm({
userInfoSignedResponseAlg: client.userInfoSignedResponseAlg,
userInfoEncryptedResponseEnc: client.userInfoEncryptedResponseEnc,
authenticationMethod: client.authenticationMethod,
idTokenTokenBindingCnf: client.idTokenTokenBindingCnf,
backchannelUserCodeParameter: client.backchannelUserCodeParameter,
refreshTokenLifetime: client.refreshTokenLifetime,
defaultMaxAge: client.defaultMaxAge,
accessTokenLifetime: client.accessTokenLifetime,
backchannelTokenDeliveryMode: client.backchannelTokenDeliveryMode,
backchannelClientNotificationEndpoint:
client.backchannelClientNotificationEndpoint,
frontChannelLogoutUri: client.frontChannelLogoutUri,

backchannelUserCodeParameter: client.backchannelUserCodeParameter,
policyUri: client.policyUri,
logoURI: client.logoURI,
Expand All @@ -200,22 +210,24 @@ function ClientWizardForm({
oxAuthClaims: client.oxAuthClaims,
customAttributes: client.customAttributes,
attributes: client.attributes,
tlsClientAuthSubjectDn: client.tlsClientAuthSubjectDn,
tlsClientAuthSubjectDn: client.attributes.tlsClientAuthSubjectDn,
frontChannelLogoutSessionRequired: client.frontChannelLogoutSessionRequired,
runIntrospectionScriptBeforeAccessTokenAsJwtCreationAndIncludeClaims:
client.runIntrospectionScriptBeforeAccessTokenAsJwtCreationAndIncludeClaims,
backchannelLogoutSessionRequired: client.backchannelLogoutSessionRequired,
client.attributes
.runIntrospectionScriptBeforeAccessTokenAsJwtCreationAndIncludeClaims,
backchannelLogoutSessionRequired:
client.attributes.backchannelLogoutSessionRequired,
keepClientAuthorizationAfterExpiration:
client.keepClientAuthorizationAfterExpiration,
allowSpontaneousScopes: client.allowSpontaneousScopes,
client.attributes.keepClientAuthorizationAfterExpiration,
allowSpontaneousScopes: client.attributes.allowSpontaneousScopes,
spontaneousScopes: client.spontaneousScopes,
introspectionScripts: client.introspectionScripts,
spontaneousScopeScriptDns: client.spontaneousScopeScriptDns,
consentGatheringScripts: client.consentGatheringScripts,
postAuthnScripts: client.postAuthnScripts,
rptClaimsScripts: client.rptClaimsScripts,
additionalAudience: client.additionalAudience,
backchannelLogoutUri: client.backchannelLogoutUri,
additionalAudience: client.attributes.additionalAudience,
backchannelLogoutUri: client.attributes.backchannelLogoutUri,
customObjectClasses: client.customObjectClasses,
requireAuthTime: client.requireAuthTime,
trustedClient: client.trustedClient,
Expand Down

0 comments on commit 59fcf22

Please sign in to comment.