mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
git-subtree-dir: login_server git-subtree-mainline: 09ebb40de21084bb10ee466429d900a5e757d349 git-subtree-split: ca71af1817a801db9a108c205bc298250d498c4b
24 lines
527 B
C++
24 lines
527 B
C++
#ifndef __JSON_INTERFACE_JSON_UPDATE_USER_INFOS_
|
|
#define __JSON_INTERFACE_JSON_UPDATE_USER_INFOS_
|
|
|
|
#include "JsonRequestHandler.h"
|
|
|
|
/*!
|
|
* @author Dario Rekowski
|
|
* @date 2020-07-30
|
|
* @brief to update non critical user data like first-name and last-name from community server with valid login-server session id
|
|
*
|
|
* works only for admins
|
|
*/
|
|
|
|
class JsonUpdateUserInfos : public JsonRequestHandler
|
|
{
|
|
public:
|
|
Poco::JSON::Object* handle(Poco::Dynamic::Var params);
|
|
|
|
protected:
|
|
|
|
|
|
};
|
|
|
|
#endif // __JSON_INTERFACE_JSON_UPDATE_USER_INFOS_
|