mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Describe new function in detail in docu/login_server.api.md. Made some changes in existing code to have the option to use a custome email text, not only the pre-formulated texte. Use a new state for returned json, state = warning. If function does what expected but still have a error message. Add the new state in frontend/src/apis/loginAPI.js.
16 lines
251 B
C++
16 lines
251 B
C++
#ifndef __JSON_SEND_EMAIL_H
|
|
#define __JSON_SEND_EMAIL_H
|
|
|
|
#include "JsonRequestHandler.h"
|
|
|
|
class JsonSendEmail : public JsonRequestHandler
|
|
{
|
|
public:
|
|
Poco::JSON::Object* handle(Poco::Dynamic::Var params);
|
|
|
|
protected:
|
|
|
|
|
|
};
|
|
|
|
#endif // __JSON_SEND_EMAIL_H
|