0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-05 01:58:35 +02:00
construct/modules/client/sync/device_lists.cc
Jason Volk 5b088551ae modules/client/sync: Minor cleanup;
modules/client/sync: Consolidate header.
2019-09-09 12:08:07 -07:00

54 lines
1 KiB
C++

// 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.
namespace ircd::m::sync
{
static bool device_lists_polylog(data &);
static bool device_lists_linear(data &);
extern item device_lists;
}
ircd::mapi::header
IRCD_MODULE
{
"Client Sync :Device Lists"
};
decltype(ircd::m::sync::device_lists)
ircd::m::sync::device_lists
{
"device_lists",
device_lists_polylog,
device_lists_linear
};
bool
ircd::m::sync::device_lists_linear(data &data)
{
return false;
}
bool
ircd::m::sync::device_lists_polylog(data &data)
{
json::stack::array
{
*data.out, "changed"
};
json::stack::array
{
*data.out, "left"
};
return false;
}