mirror of
https://github.com/IT4Change/gradido.git
synced 2026-04-01 15:15:31 +00:00
20 lines
410 B
C++
20 lines
410 B
C++
#ifndef __JSON_INTERFACE_JSON_RESET_PASSWORD_
|
|
#define __JSON_INTERFACE_JSON_RESET_PASSWORD_
|
|
|
|
#include "JsonRequestHandler.h"
|
|
|
|
/*!
|
|
* @author Dario Rekowski
|
|
* @date 2021-06-16
|
|
* @brief reset password, if user has forgetten his password
|
|
*
|
|
*/
|
|
|
|
class JsonResetPassword : public JsonRequestHandler
|
|
{
|
|
public:
|
|
Poco::JSON::Object* handle(Poco::Dynamic::Var params);
|
|
|
|
};
|
|
|
|
#endif // __JSON_INTERFACE_JSON_RESET_PASSWORD_
|