icinga2/lib/remote/actionshandler.hpp
Michael Friedrich d14a88235d Replace Copyright header with a short version, part I
CLion -> replace in path
2019-02-25 14:48:22 +01:00

23 lines
424 B
C++

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#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 ApiUser::Ptr& user, HttpRequest& request,
HttpResponse& response, const Dictionary::Ptr& params) override;
};
}
#endif /* ACTIONSHANDLER_H */