@@ -433,7 +433,7 @@ class MessageType(DispatchEnum):
433433
434434
435435INCIDENT_NAME_WITH_ENGAGEMENT = {
436- "title" : ":rotating_light: {{name}} Incident Notification" ,
436+ "title" : "🚨 {{name}} Incident Notification" ,
437437 "title_link" : "{{ticket_weblink}}" ,
438438 "text" : NOTIFICATION_PURPOSES_FYI ,
439439 "buttons" : [
@@ -469,7 +469,7 @@ class MessageType(DispatchEnum):
469469}
470470
471471INCIDENT_NAME_WITH_ENGAGEMENT_NO_SELF_JOIN = {
472- "title" : ":rotating_light: {{name}} Incident Notification" ,
472+ "title" : "🚨 {{name}} Incident Notification" ,
473473 "title_link" : "{{ticket_weblink}}" ,
474474 "text" : NOTIFICATION_PURPOSES_FYI ,
475475 "buttons" : [
@@ -482,13 +482,13 @@ class MessageType(DispatchEnum):
482482}
483483
484484CASE_NAME = {
485- "title" : ":briefcase: {{name}} Case Notification" ,
485+ "title" : "💼 {{name}} Case Notification" ,
486486 "title_link" : "{{ticket_weblink}}" ,
487487 "text" : NOTIFICATION_PURPOSES_FYI ,
488488}
489489
490490CASE_NAME_WITH_ENGAGEMENT = {
491- "title" : ":briefcase: {{name}} Case Notification" ,
491+ "title" : "💼 {{name}} Case Notification" ,
492492 "title_link" : "{{ticket_weblink}}" ,
493493 "text" : NOTIFICATION_PURPOSES_FYI ,
494494 "buttons" : [
@@ -514,32 +514,39 @@ class MessageType(DispatchEnum):
514514}
515515
516516CASE_NAME_WITH_ENGAGEMENT_NO_SELF_JOIN = {
517- "title" : ":briefcase: {{name}} Case Notification" ,
517+ "title" : "💼 {{name}} Case Notification" ,
518518 "title_link" : "{{ticket_weblink}}" ,
519519 "text" : NOTIFICATION_PURPOSES_FYI ,
520520}
521521
522522
523523CASE_STATUS_CHANGE = {
524- "title" : "*{% set status_emojis = {'Closed': ':white_check_mark:', 'New': ':new:', 'Triage': ':mag:', 'Stable': ':shield:', 'Escalated': ':arrow_up:'} %}{{ status_emojis.get(case_status_new, ':arrows_counterclockwise:') }} Status Change:* {{ case_status_old }} → {{ case_status_new }}" ,
524+ "title" : "{% set status_emojis = {'Closed': '✅', 'New': '🆕', 'Triage': '🔍', 'Stable': '🛡️', 'Escalated': '⬆️'} %}{{ status_emojis.get(case_status_new, '🔄') }} Status Change" ,
525+ "text" : "{{ case_status_old }} → {{ case_status_new }}" ,
525526}
526527
527- CASE_TYPE_CHANGE = {"title" : "*:label: Case Type Change:* {{ case_type_old }} → {{ case_type_new }}" }
528+ CASE_TYPE_CHANGE = {
529+ "title" : "🏷️ Case Type Change" ,
530+ "text" : "{{ case_type_old }} → {{ case_type_new }}" ,
531+ }
528532
529533CASE_SEVERITY_CHANGE = {
530- "title" : "*{% if case_severity_old.view_order < case_severity_new.view_order %}:arrow_up:{% elif case_severity_old.view_order > case_severity_new.view_order %}:arrow_down:{% else %}:left_right_arrow:{% endif %} Severity Change:* {{ case_severity_old.name }} → {{ case_severity_new.name }}" ,
534+ "title" : "{% if case_severity_old.view_order < case_severity_new.view_order %}⬆️{% elif case_severity_old.view_order > case_severity_new.view_order %}⬇️{% else %}↔️{% endif %} Severity Change" ,
535+ "text" : "{{ case_severity_old.name }} → {{ case_severity_new.name }}" ,
531536}
532537
533538CASE_PRIORITY_CHANGE = {
534- "title" : "*{% if case_priority_old.view_order < case_priority_new.view_order %}:arrow_up:{% elif case_priority_old.view_order > case_priority_new.view_order %}:arrow_down:{% else %}:left_right_arrow:{% endif %} Priority Change:* {{ case_priority_old.name }} → {{ case_priority_new.name }}" ,
539+ "title" : "{% if case_priority_old.view_order < case_priority_new.view_order %}⬆️{% elif case_priority_old.view_order > case_priority_new.view_order %}⬇️{% else %}↔️{% endif %} Priority Change" ,
540+ "text" : "{{ case_priority_old.name }} → {{ case_priority_new.name }}" ,
535541}
536542
537543CASE_VISIBILITY_CHANGE = {
538- "title" : "*{% set visibility_emojis = {'Open': ':unlock:', 'Restricted': ':lock:'} %}{{ visibility_emojis.get(case_visibility_new, ':eye:') }} Visibility Change:* {{ case_visibility_old }} → {{ case_visibility_new }}" ,
544+ "title" : "{% set visibility_emojis = {'Open': '🔓', 'Restricted': '🔒'} %}{{ visibility_emojis.get(case_visibility_new, '👁️') }} Visibility Change" ,
545+ "text" : "{{ case_visibility_old }} → {{ case_visibility_new }}" ,
539546}
540547
541548INCIDENT_NAME = {
542- "title" : ":rotating_light: {{name}} Incident Notification" ,
549+ "title" : "🚨 {{name}} Incident Notification" ,
543550 "title_link" : "{{ticket_weblink}}" ,
544551 "text" : NOTIFICATION_PURPOSES_FYI ,
545552}
@@ -552,9 +559,9 @@ class MessageType(DispatchEnum):
552559
553560INCIDENT_SUMMARY = {"title" : "Summary" , "text" : "{{summary}}" }
554561
555- INCIDENT_TITLE = {"title" : "*:memo: Title:* {{title}}" }
562+ INCIDENT_TITLE = {"title" : "📝 Title" , "text" : " {{title}}" }
556563
557- CASE_TITLE = {"title" : "*:memo: Title:* {{title}}" }
564+ CASE_TITLE = {"title" : "📝 Title" , "text" : " {{title}}" }
558565
559566CASE_STATUS = {
560567 "title" : "Status - {{status}}" ,
@@ -615,7 +622,8 @@ class MessageType(DispatchEnum):
615622}
616623
617624INCIDENT_COMMANDER = {
618- "title" : ":firefighter: Commander: <{{commander_weblink}}|{{commander_fullname}}, {{commander_team}}>" ,
625+ "title" : "🧑🚒 Commander - {{commander_fullname}}, {{commander_team}}" ,
626+ "title_link" : "{{commander_weblink}}" ,
619627 "text" : INCIDENT_COMMANDER_DESCRIPTION ,
620628}
621629
@@ -662,17 +670,23 @@ class MessageType(DispatchEnum):
662670}
663671
664672INCIDENT_STATUS_CHANGE = {
665- "title" : "*{% set status_emojis = {'Closed': ':white_check_mark:', 'Stable': ':shield:', 'Active': ':fire:'} %}{{ status_emojis.get(incident_status_new, ':arrows_counterclockwise:') }} Status Change:* {{ incident_status_old }} → {{ incident_status_new }}" ,
673+ "title" : "{% set status_emojis = {'Closed': '✅', 'Stable': '🛡️', 'Active': '🔥'} %}{{ status_emojis.get(incident_status_new, '🔄') }} Status Change" ,
674+ "text" : "{{ incident_status_old }} → {{ incident_status_new }}" ,
666675}
667676
668- INCIDENT_TYPE_CHANGE = {"title" : "*:label: Incident Type Change:* {{ incident_type_old }} → {{ incident_type_new }}" }
677+ INCIDENT_TYPE_CHANGE = {
678+ "title" : "🏷️ Incident Type Change" ,
679+ "text" : "{{ incident_type_old }} → {{ incident_type_new }}" ,
680+ }
669681
670682INCIDENT_SEVERITY_CHANGE = {
671- "title" : "*{% if incident_severity_old.view_order < incident_severity_new.view_order %}:arrow_up:{% elif incident_severity_old.view_order > incident_severity_new.view_order %}:arrow_down:{% else %}:left_right_arrow:{% endif %} Severity Change:* {{ incident_severity_old.name }} → {{ incident_severity_new.name }}" ,
683+ "title" : "{% if incident_severity_old.view_order < incident_severity_new.view_order %}⬆️{% elif incident_severity_old.view_order > incident_severity_new.view_order %}⬇️{% else %}↔️{% endif %} Severity Change" ,
684+ "text" : "{{ incident_severity_old.name }} → {{ incident_severity_new.name }}" ,
672685}
673686
674687INCIDENT_PRIORITY_CHANGE = {
675- "title" : "*{% if incident_priority_old.view_order < incident_priority_new.view_order %}:arrow_up:{% elif incident_priority_old.view_order > incident_priority_new.view_order %}:arrow_down:{% else %}:left_right_arrow:{% endif %} Priority Change:* {{ incident_priority_old.name }} → {{ incident_priority_new.name }}" ,
688+ "title" : "{% if incident_priority_old.view_order < incident_priority_new.view_order %}⬆️{% elif incident_priority_old.view_order > incident_priority_new.view_order %}⬇️{% else %}↔️{% endif %} Priority Change" ,
689+ "text" : "{{ incident_priority_old.name }} → {{ incident_priority_new.name }}" ,
676690}
677691
678692INCIDENT_PARTICIPANT_SUGGESTED_READING_ITEM = {
@@ -853,7 +867,8 @@ class MessageType(DispatchEnum):
853867}
854868
855869CASE_ASSIGNEE = {
856- "title" : ":female-detective: Assignee: <{{assignee_weblink}}|{{assignee_fullname}}, {{assignee_team}}>" ,
870+ "title" : "🕵️♀️ Assignee - {{assignee_fullname}}, {{assignee_team}}" ,
871+ "title_link" : "{{assignee_weblink}}" ,
857872 "text" : CASE_ASSIGNEE_DESCRIPTION ,
858873}
859874
0 commit comments