Skip to content

Commit 7e792b2

Browse files
committed
remove versioning for app listing api
1 parent 2b9f73d commit 7e792b2

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

config.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
| SENTRY_PERFORMANCE_ENABLED | false | To send persormance sentry |
1616
| SENTRY_DSN | '' | SENTRY Data Source Name |
1717
| SENTRY_TRACES_SAMPLE_RATE | 0.2 | Rate at which data send to sentry.(min=0 max=1)|
18-
| USE_V2 | "true" | Use the v2 APIs |
1918
| ENABLE_RESTART_WORKLOAD | "false" | Show restart pods option in app details page |
2019
| ENABLE_BUILD_CONTEXT | "true" | Enable build context in Devtron UI |
2120
| FORCE_SECURITY_SCANNING | "false" | Force security scanning |

src/components/app/service.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ let stageMap = {
2424
}
2525

2626
export const getAppList = (request, options?) => {
27-
let URL = Routes.APP_LIST
28-
return post(URL, request, options)
27+
return post(Routes.APP_LIST, request, options)
2928
}
3029

3130
export function getCITriggerInfo(params: { envId: number | string; ciArtifactId: number | string }) {

src/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ interface customEnv {
3434
CONFIGURABLE_TIMEOUT?: string
3535
HIDE_APPLICATION_GROUPS?: boolean
3636
K8S_CLIENT?: boolean
37-
USE_V2?: boolean
3837
CLUSTER_TERMINAL_CONNECTION_POLLING_INTERVAL?: number
3938
CLUSTER_TERMINAL_CONNECTION_RETRY_COUNT?: number
4039
ENABLE_CHART_SEARCH_IN_HELM_DEPLOY?: boolean

0 commit comments

Comments
 (0)