@@ -115,7 +115,7 @@ function ClientWizardForm({
115
115
}
116
116
return total . filter ( ( item ) => partial . includes ( item . dn ) ) || [ ]
117
117
}
118
- client . description = extractDescription ( client . customAttributes || [ ] )
118
+ // client.description = extractDescription(client.customAttributes || [])
119
119
client . spontaneousScopes =
120
120
getMapping ( client . attributes . spontaneousScopes , scopes ) || [ ]
121
121
client . introspectionScripts =
@@ -133,19 +133,19 @@ function ClientWizardForm({
133
133
getMapping ( client . attributes . postAuthnScripts , postScripts ) || [ ]
134
134
client . rptClaimsScripts =
135
135
getMapping ( client . attributes . rptClaimsScripts , rptScripts ) || [ ]
136
- client . tlsClientAuthSubjectDn = client . attributes . tlsClientAuthSubjectDn
137
- client . runIntrospectionScriptBeforeAccessTokenAsJwtCreationAndIncludeClaims =
138
- client . attributes
139
- . runIntrospectionScriptBeforeAccessTokenAsJwtCreationAndIncludeClaims ||
140
- false
141
- client . backchannelLogoutSessionRequired =
142
- client . attributes . backchannelLogoutSessionRequired || false
143
- client . keepClientAuthorizationAfterExpiration =
144
- client . attributes . keepClientAuthorizationAfterExpiration || false
145
- client . allowSpontaneousScopes =
146
- client . attributes . allowSpontaneousScopes || false
147
- client . additionalAudience = client . attributes . additionalAudience || [ ]
148
- client . backchannelLogoutUri = client . attributes . backchannelLogoutUri
136
+ // client.tlsClientAuthSubjectDn = client.attributes.tlsClientAuthSubjectDn
137
+ // client.runIntrospectionScriptBeforeAccessTokenAsJwtCreationAndIncludeClaims =
138
+ // client.attributes
139
+ // .runIntrospectionScriptBeforeAccessTokenAsJwtCreationAndIncludeClaims ||
140
+ // false
141
+ // client.backchannelLogoutSessionRequired =
142
+ // client.attributes.backchannelLogoutSessionRequired || false
143
+ // client.keepClientAuthorizationAfterExpiration =
144
+ // client.attributes.keepClientAuthorizationAfterExpiration || false
145
+ // client.allowSpontaneousScopes =
146
+ // client.attributes.allowSpontaneousScopes || false
147
+ // client.additionalAudience = client.attributes.additionalAudience || []
148
+ // client.backchannelLogoutUri = client.attributes.backchannelLogoutUri
149
149
150
150
const initialValues = {
151
151
inum : client . inum ,
@@ -164,9 +164,13 @@ function ClientWizardForm({
164
164
tosUri : client . tosUri ,
165
165
jwksUri : client . jwksUri ,
166
166
jwks : client . jwks ,
167
+ expirable : [ ] ,
168
+ expirationDate : new Date ( ) ,
167
169
softwareStatement : client . softwareStatement ,
168
170
softwareVersion : client . softwareVersion ,
169
171
softwareId : client . softwareId ,
172
+ softwareSection : client . softwareSection ? client . softwareSection : false ,
173
+ cibaSection : client . cibaSection ? client . cibaSection : false ,
170
174
idTokenSignedResponseAlg : client . idTokenSignedResponseAlg ,
171
175
idTokenEncryptedResponseAlg : client . idTokenEncryptedResponseAlg ,
172
176
tokenEndpointAuthMethod : client . tokenEndpointAuthMethod ,
0 commit comments