mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
11 lines
237 B
C++
11 lines
237 B
C++
#include "JsonUnknown.h"
|
|
|
|
Poco::JSON::Object* JsonUnknown::handle(Poco::Dynamic::Var params)
|
|
{
|
|
Poco::JSON::Object* result = new Poco::JSON::Object;
|
|
|
|
result->set("state", "error");
|
|
result->set("msg", "unknown call");
|
|
|
|
return result;
|
|
} |