This repository was archived by the owner on Sep 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 672
Add emojis directly and refactor email and Slack messages #6193
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
6ef69e3
Add emojis directly and refactor email and Slack messages
28401aa
Merge branch 'main' into update-slack-emojis
nathanmyee 12b55e7
Merge branch 'main' into update-slack-emojis
nathanmyee aadb792
Merge branch 'main' into update-slack-emojis
nathanmyee File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -86,7 +86,7 @@ def get_plugin_side_effect(db_session, plugin_type, project_id): | |
| subject=mock_subject, | ||
| project=mock_project, | ||
| channel_id="test-channel", | ||
| important_reaction=":white_check_mark:", | ||
| important_reaction="✅", | ||
| participant_email="[email protected]", | ||
| ) | ||
|
|
||
|
|
@@ -152,7 +152,7 @@ def get_plugin_side_effect(db_session, plugin_type, project_id): | |
| subject=mock_subject, | ||
| project=mock_project, | ||
| channel_id="test-channel", | ||
| important_reaction=":white_check_mark:", | ||
| important_reaction="✅", | ||
| participant_email="[email protected]", | ||
| ) | ||
|
|
||
|
|
@@ -194,7 +194,7 @@ def test_generate_read_in_summary_cache_hit( | |
| subject=mock_subject, | ||
| project=mock_project, | ||
| channel_id="test-channel", | ||
| important_reaction=":white_check_mark:", | ||
| important_reaction="✅", | ||
| participant_email="[email protected]", | ||
| ) | ||
|
|
||
|
|
@@ -248,7 +248,7 @@ def get_plugin_side_effect(db_session, plugin_type, project_id): | |
| subject=mock_subject, | ||
| project=mock_project, | ||
| channel_id="test-channel", | ||
| important_reaction=":white_check_mark:", | ||
| important_reaction="✅", | ||
| participant_email="[email protected]", | ||
| ) | ||
|
|
||
|
|
@@ -275,7 +275,7 @@ def test_generate_read_in_summary_no_ai_plugin(self, session, mock_subject, mock | |
| subject=mock_subject, | ||
| project=mock_project, | ||
| channel_id="test-channel", | ||
| important_reaction=":white_check_mark:", | ||
| important_reaction="✅", | ||
| participant_email="[email protected]", | ||
| ) | ||
|
|
||
|
|
@@ -313,7 +313,7 @@ def test_generate_read_in_summary_no_conversation_plugin( | |
| subject=mock_subject, | ||
| project=mock_project, | ||
| channel_id="test-channel", | ||
| important_reaction=":white_check_mark:", | ||
| important_reaction="✅", | ||
| participant_email="[email protected]", | ||
| ) | ||
|
|
||
|
|
@@ -361,7 +361,7 @@ def get_plugin_side_effect(db_session, plugin_type, project_id): | |
| subject=mock_subject, | ||
| project=mock_project, | ||
| channel_id="test-channel", | ||
| important_reaction=":white_check_mark:", | ||
| important_reaction="✅", | ||
| participant_email="[email protected]", | ||
| ) | ||
|
|
||
|
|
@@ -412,7 +412,7 @@ def get_plugin_side_effect(db_session, plugin_type, project_id): | |
| subject=mock_subject, | ||
| project=mock_project, | ||
| channel_id="test-channel", | ||
| important_reaction=":white_check_mark:", | ||
| important_reaction="✅", | ||
| participant_email="[email protected]", | ||
| ) | ||
|
|
||
|
|
@@ -442,7 +442,7 @@ def test_generate_read_in_summary_event_query_incident( | |
| subject=mock_subject, | ||
| project=mock_project, | ||
| channel_id="test-channel", | ||
| important_reaction=":white_check_mark:", | ||
| important_reaction="✅", | ||
| participant_email="[email protected]", | ||
| ) | ||
|
|
||
|
|
@@ -465,7 +465,7 @@ def test_generate_read_in_summary_event_query_case(self, session, mock_subject, | |
| subject=mock_subject, | ||
| project=mock_project, | ||
| channel_id="test-channel", | ||
| important_reaction=":white_check_mark:", | ||
| important_reaction="✅", | ||
| participant_email="[email protected]", | ||
| ) | ||
|
|
||
|
|
@@ -541,7 +541,7 @@ def get_plugin_side_effect(db_session, plugin_type, project_id): | |
| db_session=session, | ||
| incident=mock_incident, | ||
| project=mock_project, | ||
| important_reaction=":fire:", | ||
| important_reaction="🔥", | ||
| ) | ||
|
|
||
| # Assertions | ||
|
|
@@ -579,7 +579,7 @@ def test_generate_tactical_report_no_ai_plugin(self, session, mock_incident, moc | |
| db_session=session, | ||
| incident=mock_incident, | ||
| project=mock_project, | ||
| important_reaction=":fire:", | ||
| important_reaction="🔥", | ||
| ) | ||
| print(type(result)) | ||
| assert isinstance(result, TacticalReportResponse) | ||
|
|
@@ -606,7 +606,7 @@ def test_generate_tactical_report_no_conversation_plugin( | |
| db_session=session, | ||
| incident=mock_incident, | ||
| project=mock_project, | ||
| important_reaction=":fire:", | ||
| important_reaction="🔥", | ||
| ) | ||
|
|
||
| assert isinstance(result, TacticalReportResponse) | ||
|
|
@@ -642,7 +642,7 @@ def get_plugin_side_effect(db_session, plugin_type, project_id): | |
| db_session=session, | ||
| incident=mock_incident, | ||
| project=mock_project, | ||
| important_reaction=":fire:", | ||
| important_reaction="🔥", | ||
| ) | ||
|
|
||
| assert isinstance(result, TacticalReportResponse) | ||
|
|
@@ -681,7 +681,7 @@ def get_plugin_side_effect(db_session, plugin_type, project_id): | |
| db_session=session, | ||
| incident=mock_incident, | ||
| project=mock_project, | ||
| important_reaction=":fire:", | ||
| important_reaction="🔥", | ||
| ) | ||
|
|
||
| assert isinstance(result, TacticalReportResponse) | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.