Skip to content

Commit f8bbc1e

Browse files
authored
Merge pull request #4402 from ppomes/2.4
Issue #4400 - No component email on incident creation/update
2 parents 731a843 + 3120cda commit f8bbc1e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

app/Bus/Handlers/Commands/Incident/CreateIncidentCommandHandler.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ public function handle(CreateIncidentCommand $command)
126126
null,
127127
null,
128128
null,
129-
false
129+
null,
130+
true // Silent mode
130131
));
131132
}
132133

app/Bus/Handlers/Commands/Incident/UpdateIncidentCommandHandler.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ public function handle(UpdateIncidentCommand $command)
111111
null,
112112
null,
113113
null,
114-
false
114+
null,
115+
true // Silent mode
115116
));
116117
}
117118

0 commit comments

Comments
 (0)