mas_storage/upstream_oauth2/
mod.rs

1// Copyright 2024 New Vector Ltd.
2// Copyright 2022-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
7//! Repositories to interact with entities related to the upstream OAuth 2.0
8//! providers
9
10mod link;
11mod provider;
12mod session;
13
14pub use self::{
15    link::{UpstreamOAuthLinkFilter, UpstreamOAuthLinkRepository},
16    provider::{
17        UpstreamOAuthProviderFilter, UpstreamOAuthProviderParams, UpstreamOAuthProviderRepository,
18    },
19    session::UpstreamOAuthSessionRepository,
20};