Rename events to adhere to the "Noun Action" naming convention (#1763)

## Description

Rename events to adhere to naming convention 

## Type of change

<!--- Please check the type of change your PR introduces: --->
- [ ] 🌻 Feature
- [x] 🐛 Bugfix
- [ ] 🗺️ Documentation
- [ ] 🤖 Test
- [ ] 💻 CI/Deployment
- [ ] 🐹 Trivial/Minor

## Issue(s)

## Test Plan

<!-- How will this be tested prior to merging.-->
- [x] 💪 Manual
- [ ]  Unit test
- [ ] 💚 E2E
This commit is contained in:
Georgi Matev 2022-12-09 14:47:51 -08:00 committed by GitHub
parent e1738d657d
commit 21c717fbe8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,11 +23,13 @@ const (
tenantID = "m365_tenant_hash" tenantID = "m365_tenant_hash"
// Event Keys // Event Keys
RepoInit = "repo_init" CorsoStart = "Corso Start"
BackupStart = "backup_start" RepoInit = "Repo Init"
BackupEnd = "backup_end" RepoConnect = "Repo Connect"
RestoreStart = "restore_start" BackupStart = "Backup Start"
RestoreEnd = "restore_end" BackupEnd = "Backup End"
RestoreStart = "Restore Start"
RestoreEnd = "Restore End"
// Event Data Keys // Event Data Keys
BackupCreateTime = "backup_creation_time" BackupCreateTime = "backup_creation_time"