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 131680b commit 7d206d6Copy full SHA for 7d206d6
site/src/api/api.ts
@@ -832,10 +832,12 @@ export const getAgentListeningPorts = async (
832
return response.data
833
}
834
835
-export const getSSHConfig = async (): Promise<TypesGen.SSHConfigResponse> => {
836
- const response = await axios.get(`/api/v2/deployment/ssh`)
837
- return response.data
838
-}
+// getDeploymentSSHConfig is used by the VSCode-Extension.
+export const getDeploymentSSHConfig =
+ async (): Promise<TypesGen.SSHConfigResponse> => {
+ 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`)
0 commit comments