| 11 | thread_local NotificationCommand::Ptr NotificationCommand::ExecuteOverride; |
| 12 | |
| 13 | Dictionary::Ptr NotificationCommand::Execute(const Notification::Ptr& notification, |
| 14 | const User::Ptr& user, const CheckResult::Ptr& cr, const NotificationType& type, |
| 15 | const String& author, const String& comment, const Dictionary::Ptr& resolvedMacros, |
| 16 | bool useResolvedMacros) |
| 17 | { |
| 18 | return GetExecute()->Invoke({ |
| 19 | notification, |
| 20 | user, |
| 21 | cr, |
| 22 | type, |
| 23 | author, |
| 24 | comment, |
| 25 | resolvedMacros, |
| 26 | useResolvedMacros, |
| 27 | }); |
| 28 | } |