2018-02-03 18:22:01 -08:00
|
|
|
// 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.
|
2017-08-23 15:10:28 -06:00
|
|
|
|
2017-08-18 12:19:13 -06:00
|
|
|
#pragma once
|
2017-09-24 18:05:42 -07:00
|
|
|
#define HAVE_IRCD_M_USER_H
|
2017-08-23 15:10:28 -06:00
|
|
|
|
2017-09-24 18:05:42 -07:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
struct user;
|
2018-02-15 13:11:51 -08:00
|
|
|
|
2018-02-25 00:19:03 -08:00
|
|
|
bool my(const user &);
|
2018-03-09 09:00:28 -08:00
|
|
|
bool exists(const user &);
|
2018-02-15 13:11:51 -08:00
|
|
|
bool exists(const id::user &);
|
2019-03-14 13:02:27 -07:00
|
|
|
|
2018-03-09 09:00:28 -08:00
|
|
|
user create(const id::user &, const json::members &args = {});
|
2017-09-24 18:05:42 -07:00
|
|
|
}
|
2017-08-18 12:19:13 -06:00
|
|
|
|
2019-03-14 13:02:27 -07:00
|
|
|
#include "user/user.h"
|
|
|
|
#include "user/room.h"
|
|
|
|
#include "user/rooms.h"
|
|
|
|
#include "user/mitsein.h"
|
|
|
|
#include "user/events.h"
|
|
|
|
#include "user/profile.h"
|
|
|
|
#include "user/account_data.h"
|
|
|
|
#include "user/room_account_data.h"
|
|
|
|
#include "user/room_tags.h"
|
|
|
|
#include "user/filter.h"
|
2019-03-14 17:07:16 -07:00
|
|
|
#include "user/ignores.h"
|