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