Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8857971 commit a6fa8caCopy full SHA for a6fa8ca
site/src/api/api.ts
@@ -832,6 +832,13 @@ export const getAgentListeningPorts = async (
832
return response.data
833
}
834
835
+// getDeploymentSSHConfig is used by the VSCode-Extension.
836
+export const getDeploymentSSHConfig =
837
+ async (): Promise<TypesGen.SSHConfigResponse> => {
838
+ const response = await axios.get(`/api/v2/deployment/ssh`)
839
+ return response.data
840
+ }
841
+
842
export const getDeploymentValues = async (): Promise<DeploymentConfig> => {
843
const response = await axios.get(`/api/v2/deployment/config`)
844
0 commit comments