icinga2/lib/remote/actionshandler.hpp

29 lines
510 B
C++
Raw Permalink Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef ACTIONSHANDLER_H
#define ACTIONSHANDLER_H
#include "remote/httphandler.hpp"
namespace icinga
{
2018-01-04 00:11:04 -05:00
class ActionsHandler final : public HttpHandler
{
public:
DECLARE_PTR_TYPEDEFS(ActionsHandler);
2020-07-03 05:17:36 -04:00
static thread_local ApiUser::Ptr AuthenticatedApiUser;
bool HandleRequest(
const WaitGroup::Ptr& waitGroup,
const HttpApiRequest& request,
HttpApiResponse& response,
boost::asio::yield_context& yc
) override;
};
}
#endif /* ACTIONSHANDLER_H */