Skip to content

Commit 27a9277

Browse files
Merge pull request #917 from devtron-labs/feat/storage-backup
feat: storage backup
2 parents 91d6d07 + bf17575 commit 27a9277

4 files changed

Lines changed: 16 additions & 13 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtron-labs/devtron-fe-common-lib",
3-
"version": "1.20.3-pre-11",
3+
"version": "1.20.3-pre-12",
44
"description": "Supporting common component library",
55
"type": "module",
66
"main": "dist/index.js",

src/Common/Constants.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const SOFTWARE_RELEASE_MANAGEMENT_ROOT = '/software-release-management'
5757
const COST_VISIBILITY_ROOT = '/cost-visibility'
5858
const SECURITY_CENTER_ROOT = '/security-center'
5959
const AUTOMATION_AND_ENABLEMENT_ROOT = '/automation-and-enablement'
60-
const BACKUP_AND_RESTORE_ROOT = '/backup-and-restore'
60+
const DATA_PROTECTION_ROOT = '/data-protection-management'
6161
const GLOBAL_CONFIG_ROOT = '/global-configuration'
6262
const AI_RECOMMENDATIONS_ROOT = '/ai-recommendations'
6363

@@ -123,9 +123,12 @@ export const URLS = {
123123
// AUTOMATION AND ENABLEMENT
124124
AUTOMATION_AND_ENABLEMENT: AUTOMATION_AND_ENABLEMENT_ROOT,
125125
AUTOMATION_AND_ENABLEMENT_JOB: `${AUTOMATION_AND_ENABLEMENT_ROOT}/job`,
126-
// BACKUP AND RESTORE
127-
BACKUP_AND_RESTORE: BACKUP_AND_RESTORE_ROOT,
128-
BACKUP_AND_RESTORE_OVERVIEW: `${BACKUP_AND_RESTORE_ROOT}/overview`,
126+
// DATA PROTECTION
127+
DATA_PROTECTION: DATA_PROTECTION_ROOT,
128+
DATA_PROTECTION_OVERVIEW: `${DATA_PROTECTION_ROOT}/overview`,
129+
DATA_PROTECTION_BACKUP_AND_SCHEDULE: `${DATA_PROTECTION_ROOT}/backup-and-schedule`,
130+
DATA_PROTECTION_RESTORES: `${DATA_PROTECTION_ROOT}/restores`,
131+
DATA_PROTECTION_BACKUP_LOCATIONS: `${DATA_PROTECTION_ROOT}/backup-locations`,
129132
// GLOBAL CONFIGURATION
130133
GLOBAL_CONFIG: GLOBAL_CONFIG_ROOT,
131134
GLOBAL_CONFIG_DOCKER: `${GLOBAL_CONFIG_ROOT}/docker`,

src/Shared/Hooks/useUserPreferences/types.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ export type NavigationItemID =
5151
| 'global-configuration-cluster-and-environments'
5252
| 'global-configuration-container-oci-registry'
5353
| 'global-configuration-authorization'
54-
| 'backup-and-restore-overview'
55-
| 'backup-and-restore-backup-and-schedule'
56-
| 'backup-and-restore-restores'
57-
| 'backup-and-restore-backup-repositories'
58-
| 'backup-and-restore-backup-locations'
59-
| 'backup-and-restore-history-and-logs'
54+
| 'data-protection-overview'
55+
| 'data-protection-backup-and-schedule'
56+
| 'data-protection-restores'
57+
| 'data-protection-backup-repositories'
58+
| 'data-protection-backup-locations'
59+
| 'data-protection-history-and-logs'
6060
| 'ai-recommendations-overview'
6161

6262
export type NavigationSubMenuItemID =

0 commit comments

Comments
 (0)