You've already forked authentication-service
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:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user