1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00

graphql: API to set the user displayname (#1412)

This commit is contained in:
Quentin Gliech
2023-08-03 16:45:59 +02:00
committed by GitHub
parent aa59f73956
commit 1e474518f5
8 changed files with 370 additions and 10 deletions

View File

@@ -14,6 +14,7 @@
mod browser_session;
mod compat_session;
mod matrix;
mod oauth2_session;
mod user_email;
@@ -26,6 +27,7 @@ pub struct Mutation(
oauth2_session::OAuth2SessionMutations,
compat_session::CompatSessionMutations,
browser_session::BrowserSessionMutations,
matrix::MatrixMutations,
);
impl Mutation {