icinga2/lib/icinga/notificationcommand.cpp
Michael Friedrich 152709071d Revert "Implement last_notification_result handling for Notification objects"
This reverts commit 1706b297a50aceafdbbfe8ed8d46c8d01c114464.
2020-01-07 14:21:06 +01:00

26 lines
612 B
C++

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "icinga/notificationcommand.hpp"
#include "icinga/notificationcommand-ti.cpp"
using namespace icinga;
REGISTER_TYPE(NotificationCommand);
Dictionary::Ptr NotificationCommand::Execute(const Notification::Ptr& notification,
const User::Ptr& user, const CheckResult::Ptr& cr, const NotificationType& type,
const String& author, const String& comment, const Dictionary::Ptr& resolvedMacros,
bool useResolvedMacros)
{
return GetExecute()->Invoke({
notification,
user,
cr,
type,
author,
comment,
resolvedMacros,
useResolvedMacros,
});
}