mas_handlers/admin/v1/users/
mod.rs

1// Copyright 2024 New Vector Ltd.
2// Copyright 2024 The Matrix.org Foundation C.I.C.
3//
4// SPDX-License-Identifier: AGPL-3.0-only
5// Please see LICENSE in the repository root for full details.
6
7mod add;
8mod by_username;
9mod deactivate;
10mod get;
11mod list;
12mod lock;
13mod set_admin;
14mod set_password;
15mod unlock;
16
17pub use self::{
18    add::{doc as add_doc, handler as add},
19    by_username::{doc as by_username_doc, handler as by_username},
20    deactivate::{doc as deactivate_doc, handler as deactivate},
21    get::{doc as get_doc, handler as get},
22    list::{doc as list_doc, handler as list},
23    lock::{doc as lock_doc, handler as lock},
24    set_admin::{doc as set_admin_doc, handler as set_admin},
25    set_password::{doc as set_password_doc, handler as set_password},
26    unlock::{doc as unlock_doc, handler as unlock},
27};