public virtual async Task DeleteSecretAsync(ClientSecretGetByTypeDto clientSecretGetByType)
        {
            var client = await ClientRepository.GetAsync(clientSecretGetByType.ClientId);

            client.RemoveSecret(clientSecretGetByType.Value, clientSecretGetByType.Type);
            await ClientRepository.UpdateAsync(client);
        }
예제 #2
0
 public virtual async Task DeleteSecretAsync(ClientSecretGetByTypeDto clientSecretGetByType)
 {
     await ClientAppService.DeleteSecretAsync(clientSecretGetByType);
 }