fix: idp removal (#2271)

This commit is contained in:
Max Peintner 2021-08-26 10:47:18 +02:00 committed by GitHub
parent cd629a5d1c
commit 1da68420bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -91,8 +91,8 @@ export class ExternalIdpsComponent implements OnInit {
data: { data: {
confirmKey: 'ACTIONS.REMOVE', confirmKey: 'ACTIONS.REMOVE',
cancelKey: 'ACTIONS.CANCEL', cancelKey: 'ACTIONS.CANCEL',
titleKey: 'USER.EXTERNALIDP.DIALOG.DELETE_TITLE', titleKey: 'USER.EXTERNALIDP.DIALOG.REMOVE_TITLE',
descriptionKey: 'USER.EXTERNALIDP.DIALOG.DELETE_DESCRIPTION', descriptionKey: 'USER.EXTERNALIDP.DIALOG.REMOVE_DESCRIPTION',
}, },
width: '400px', width: '400px',
}); });

View File

@ -835,8 +835,8 @@ export class ManagementService {
public removeHumanLinkedIDP( public removeHumanLinkedIDP(
idpId: string, idpId: string,
userId: string,
linkedUserId: string, linkedUserId: string,
userId: string,
): Promise<RemoveHumanLinkedIDPResponse.AsObject> { ): Promise<RemoveHumanLinkedIDPResponse.AsObject> {
const req = new RemoveHumanLinkedIDPRequest(); const req = new RemoveHumanLinkedIDPRequest();
req.setIdpId(idpId); req.setIdpId(idpId);