From f2cc974d5b70da9b14047f8b5a82cbcad9a47de2 Mon Sep 17 00:00:00 2001 From: Jean Pierre Huaroto Date: Wed, 22 Nov 2023 05:42:50 +0000 Subject: [PATCH] :lipstick: --- components/public-api/gitpod/v1/configuration.proto | 1 - components/public-api/gitpod/v1/ssh.proto | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/components/public-api/gitpod/v1/configuration.proto b/components/public-api/gitpod/v1/configuration.proto index cfca9460a15619..989ed728a30b7f 100644 --- a/components/public-api/gitpod/v1/configuration.proto +++ b/components/public-api/gitpod/v1/configuration.proto @@ -50,7 +50,6 @@ service ConfigurationService { // Updates a configuration. rpc UpdateConfiguration(UpdateConfigurationRequest) returns (UpdateConfigurationResponse) {} - // Deletes a configuration. rpc DeleteConfiguration(DeleteConfigurationRequest) returns (DeleteConfigurationResponse) {} } diff --git a/components/public-api/gitpod/v1/ssh.proto b/components/public-api/gitpod/v1/ssh.proto index cd18ea52b34836..ecd399b2aaeb8e 100644 --- a/components/public-api/gitpod/v1/ssh.proto +++ b/components/public-api/gitpod/v1/ssh.proto @@ -48,6 +48,8 @@ message CreateSSHPublicKeyResponse { SSHPublicKey ssh_key = 1; } -message DeleteSSHPublicKeyRequest { string ssh_key_id = 1; } +message DeleteSSHPublicKeyRequest { + string ssh_key_id = 1; +} message DeleteSSHPublicKeyResponse {}