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

Buttons to end compat and OAuth2 sessions

This commit is contained in:
Quentin Gliech
2023-05-03 18:16:48 +02:00
parent 119e3300de
commit b56c2350a4
17 changed files with 2603 additions and 868 deletions

View File

@@ -12,13 +12,19 @@
// See the License for the specific language governing permissions and
// limitations under the License.
mod compat_session;
mod oauth2_session;
mod user_email;
use async_graphql::MergedObject;
/// The mutations root of the GraphQL interface.
#[derive(Default, MergedObject)]
pub struct Mutation(user_email::UserEmailMutations);
pub struct Mutation(
user_email::UserEmailMutations,
oauth2_session::OAuth2SessionMutations,
compat_session::CompatSessionMutations,
);
impl Mutation {
#[must_use]