@@ -92,7 +92,8 @@ export function renderAuth(provider?: Partial<SCIMProvider>, errors: ValidationE
9292 default :
9393 case SCIMAuthenticationModeEnum . Token :
9494 return renderAuthToken ( provider , errors ) ;
95- case SCIMAuthenticationModeEnum . Oauth :
95+ case SCIMAuthenticationModeEnum . OauthSilent :
96+ case SCIMAuthenticationModeEnum . OauthInteractive :
9697 return renderAuthOAuth ( provider , errors ) ;
9798 }
9899}
@@ -160,12 +161,18 @@ export function renderForm({ provider, errors, update }: SCIMProviderFormProps)
160161 ) } `,
161162 } ,
162163 {
163- label : msg ( "OAuth" ) ,
164- value : SCIMAuthenticationModeEnum . Oauth ,
165- default : true ,
164+ label : msg ( "OAuth (Silent)" ) ,
165+ value : SCIMAuthenticationModeEnum . OauthSilent ,
166166 description : html `${ msg ( "Authenticate SCIM requests using OAuth." ) }
167167 < ak-license-notice > </ ak-license-notice > ` ,
168168 } ,
169+ {
170+ label : msg ( "OAuth (Interactive)" ) ,
171+ value : SCIMAuthenticationModeEnum . OauthInteractive ,
172+ description : html `${ msg (
173+ "Authenticate SCIM requests using OAuth, interactively authorized." ,
174+ ) } < ak-license-notice > </ ak-license-notice > `,
175+ } ,
169176 ] }
170177 > </ ak-radio >
171178 </ ak-form-element-horizontal >
0 commit comments