-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Fix broken osd functional test repo (#189) * moved constants to common folder Signed-off-by: Riya Saxena <[email protected]> * fix broken osd functionaltest Repo Signed-off-by: Riya Saxena <[email protected]> * fixing the UT's Signed-off-by: Riya Saxena <[email protected]> * fixing the UT's Signed-off-by: Riya Saxena <[email protected]> --------- Signed-off-by: Riya Saxena <[email protected]> Signed-off-by: Riya <[email protected]> (cherry picked from commit e597081) * fix merge conflict Signed-off-by: Riya Saxena <[email protected]> * revert configRoutes changes Signed-off-by: Riya Saxena <[email protected]> * revert configRoutes changes Signed-off-by: Riya Saxena <[email protected]> --------- Signed-off-by: Riya Saxena <[email protected]> Signed-off-by: Riya <[email protected]> Co-authored-by: Hailong Cui <[email protected]>
- Loading branch information
1 parent
1994dbb
commit dada2bf
Showing
11 changed files
with
39 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
export const BACKEND_CHANNEL_TYPE = Object.freeze({ | ||
SLACK: 'slack', | ||
EMAIL: 'email', | ||
CHIME: 'chime', | ||
MICROSOFT_TEAMS: 'microsoft_teams', | ||
CUSTOM_WEBHOOK: 'webhook', | ||
SNS: 'sns', | ||
}); | ||
export const CHANNEL_TYPE = Object.freeze({ | ||
[BACKEND_CHANNEL_TYPE.SLACK]: 'Slack', | ||
[BACKEND_CHANNEL_TYPE.EMAIL]: 'Email', | ||
[BACKEND_CHANNEL_TYPE.CHIME]: 'Chime', | ||
[BACKEND_CHANNEL_TYPE.MICROSOFT_TEAMS]: 'Microsoft Teams', | ||
[BACKEND_CHANNEL_TYPE.CUSTOM_WEBHOOK]: 'Custom webhook', | ||
[BACKEND_CHANNEL_TYPE.SNS]: 'Amazon SNS', | ||
}) as { | ||
slack: string; | ||
email: string; | ||
chime: string; | ||
microsoft_teams: string; | ||
webhook: string; | ||
sns: string; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters