mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
21 lines
423 B
C++
21 lines
423 B
C++
#ifndef AdminUserPasswordReset_INCLUDED
|
|
#define AdminUserPasswordReset_INCLUDED
|
|
|
|
|
|
#include "Poco/Net/HTTPRequestHandler.h"
|
|
|
|
|
|
#include "SessionHTTPRequestHandler.h"
|
|
|
|
|
|
class AdminUserPasswordReset: public SessionHTTPRequestHandler
|
|
{
|
|
public:
|
|
AdminUserPasswordReset(Session*);
|
|
|
|
void handleRequest(Poco::Net::HTTPServerRequest& request, Poco::Net::HTTPServerResponse& response);
|
|
};
|
|
|
|
|
|
#endif // AdminUserPasswordReset_INCLUDED
|