icinga2/lib/remote/createobjecthandler.hpp
Johannes Schmidt 749a4b0c89 Remove extra parameters from HTTP handler signature
These parameters are no longer needed since they were only used
by EventsHandler which was refactored in the other commit.
2025-07-14 10:36:59 +02:00

27 lines
466 B
C++

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef CREATEOBJECTHANDLER_H
#define CREATEOBJECTHANDLER_H
#include "remote/httphandler.hpp"
namespace icinga
{
class CreateObjectHandler final : public HttpHandler
{
public:
DECLARE_PTR_TYPEDEFS(CreateObjectHandler);
bool HandleRequest(
const WaitGroup::Ptr& waitGroup,
HttpRequest& request,
HttpResponse& response,
boost::asio::yield_context& yc
) override;
};
}
#endif /* CREATEOBJECTHANDLER_H */