public virtual async Task DeleteSecretAsync(ApiSecretGetByTypeInputDto apiSecretGetByType)
        {
            var apiResource = await ApiResourceRepository.GetAsync(apiSecretGetByType.ApiResourceId);

            apiResource.RemoveSecret(apiSecretGetByType.Value, apiSecretGetByType.Type);
        }
Example #2
0
 public virtual async Task DeleteSecretAsync(ApiSecretGetByTypeInputDto apiSecretGetByType)
 {
     await ApiResourceAppService.DeleteSecretAsync(apiSecretGetByType);
 }