mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 08:12:37 +01:00
modules/client/account: Stub an account/3pid response.
This commit is contained in:
parent
5c171d6789
commit
24aac22e33
2 changed files with 70 additions and 0 deletions
|
@ -143,6 +143,7 @@ client_module_LTLIBRARIES += client/client_user.la
|
|||
#
|
||||
|
||||
client_client_account_la_SOURCES = \
|
||||
client/account/3pid.cc \
|
||||
client/account/whoami.cc \
|
||||
client/account/password.cc \
|
||||
client/account/deactivate.cc \
|
||||
|
|
69
modules/client/account/3pid.cc
Normal file
69
modules/client/account/3pid.cc
Normal file
|
@ -0,0 +1,69 @@
|
|||
// Matrix Construct
|
||||
//
|
||||
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
||||
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
||||
//
|
||||
// Permission to use, copy, modify, and/or distribute this software for any
|
||||
// purpose with or without fee is hereby granted, provided that the above
|
||||
// copyright notice and this permission notice is present in all copies. The
|
||||
// full license for this software is available in the LICENSE file.
|
||||
|
||||
#include "account.h"
|
||||
|
||||
using namespace ircd;
|
||||
|
||||
resource
|
||||
account_3pid
|
||||
{
|
||||
"/_matrix/client/r0/account/3pid",
|
||||
{
|
||||
"(3.5) Adding Account Administrative Contact Information"
|
||||
}
|
||||
};
|
||||
|
||||
resource::response
|
||||
get__3pid(client &client,
|
||||
const resource::request &request)
|
||||
{
|
||||
std::vector<json::value> vec;
|
||||
json::value threepids
|
||||
{
|
||||
vec.data(), vec.size()
|
||||
};
|
||||
|
||||
return resource::response
|
||||
{
|
||||
client, json::members
|
||||
{
|
||||
{ "threepids", threepids }
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
resource::method
|
||||
get_3pid
|
||||
{
|
||||
account_3pid, "GET", get__3pid,
|
||||
{
|
||||
get_3pid.REQUIRES_AUTH
|
||||
}
|
||||
};
|
||||
|
||||
resource::response
|
||||
post__3pid(client &client,
|
||||
const resource::request &request)
|
||||
{
|
||||
return resource::response
|
||||
{
|
||||
client, http::OK
|
||||
};
|
||||
}
|
||||
|
||||
resource::method
|
||||
post_3pid
|
||||
{
|
||||
account_3pid, "POST", post__3pid,
|
||||
{
|
||||
post_3pid.REQUIRES_AUTH
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue