icinga2/lib/remote/actionshandler.hpp

27 lines
516 B
C++

// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef ACTIONSHANDLER_H
#define ACTIONSHANDLER_H
#include "remote/httphandler.hpp"
namespace icinga
{
class ActionsHandler final : public HttpHandler
{
public:
DECLARE_PTR_TYPEDEFS(ActionsHandler);
bool HandleRequest(
const WaitGroup::Ptr& waitGroup,
const HttpApiRequest& request,
HttpApiResponse& response,
boost::asio::yield_context& yc
) override;
};
}
#endif /* ACTIONSHANDLER_H */