2021-06-18 05:15:52 -06:00
|
|
|
# Copyright 2021 The Matrix.org Foundation C.I.C.
|
2014-08-31 09:06:39 -06:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2019-10-10 02:39:35 -06:00
|
|
|
from ._base import RootConfig
|
2021-04-19 12:16:34 -06:00
|
|
|
from .account_validity import AccountValidityConfig
|
2016-02-23 06:22:07 -07:00
|
|
|
from .api import ApiConfig
|
2015-03-31 02:22:31 -06:00
|
|
|
from .appservice import AppServiceConfig
|
2020-12-18 05:33:57 -07:00
|
|
|
from .auth import AuthConfig
|
2022-03-11 11:46:45 -07:00
|
|
|
from .background_updates import BackgroundUpdateConfig
|
2020-05-11 11:45:23 -06:00
|
|
|
from .cache import CacheConfig
|
2018-07-09 00:09:20 -06:00
|
|
|
from .captcha import CaptchaConfig
|
2015-10-07 07:45:57 -06:00
|
|
|
from .cas import CasConfig
|
2021-04-20 12:55:20 -06:00
|
|
|
from .consent import ConsentConfig
|
2018-07-09 00:09:20 -06:00
|
|
|
from .database import DatabaseConfig
|
|
|
|
from .emailconfig import EmailConfig
|
2021-01-27 05:41:24 -07:00
|
|
|
from .experimental import ExperimentalConfig
|
2020-07-10 11:26:36 -06:00
|
|
|
from .federation import FederationConfig
|
2021-04-20 12:55:20 -06:00
|
|
|
from .jwt import JWTConfig
|
2018-07-09 00:09:20 -06:00
|
|
|
from .key import KeyConfig
|
|
|
|
from .logger import LoggingConfig
|
|
|
|
from .metrics import MetricsConfig
|
2021-06-18 05:15:52 -06:00
|
|
|
from .modules import ModulesConfig
|
2021-08-31 16:37:07 -06:00
|
|
|
from .oembed import OembedConfig
|
2021-04-20 12:55:20 -06:00
|
|
|
from .oidc import OIDCConfig
|
2016-10-03 03:27:10 -06:00
|
|
|
from .password_auth_providers import PasswordAuthProviderConfig
|
2017-06-23 07:15:18 -06:00
|
|
|
from .push import PushConfig
|
2018-07-09 00:09:20 -06:00
|
|
|
from .ratelimiting import RatelimitConfig
|
2020-04-22 06:07:41 -06:00
|
|
|
from .redis import RedisConfig
|
2018-07-09 00:09:20 -06:00
|
|
|
from .registration import RegistrationConfig
|
|
|
|
from .repository import ContentRepositoryConfig
|
2021-10-15 08:30:48 -06:00
|
|
|
from .retention import RetentionConfig
|
2020-06-10 10:44:34 -06:00
|
|
|
from .room import RoomConfig
|
2018-10-17 09:14:04 -06:00
|
|
|
from .room_directory import RoomDirectoryConfig
|
2021-04-20 12:55:20 -06:00
|
|
|
from .saml2 import SAML2Config
|
2018-07-09 00:09:20 -06:00
|
|
|
from .server import ServerConfig
|
2021-04-20 12:55:20 -06:00
|
|
|
from .server_notices import ServerNoticesConfig
|
2017-09-26 12:20:23 -06:00
|
|
|
from .spam_checker import SpamCheckerConfig
|
2020-03-02 09:36:32 -07:00
|
|
|
from .sso import SSOConfig
|
2019-05-21 10:36:50 -06:00
|
|
|
from .stats import StatsConfig
|
2019-06-12 03:31:37 -06:00
|
|
|
from .third_party_event_rules import ThirdPartyRulesConfig
|
2018-07-09 00:09:20 -06:00
|
|
|
from .tls import TlsConfig
|
2019-07-11 03:36:03 -06:00
|
|
|
from .tracer import TracerConfig
|
2017-11-29 09:46:45 -07:00
|
|
|
from .user_directory import UserDirectoryConfig
|
2018-07-09 00:09:20 -06:00
|
|
|
from .voip import VoipConfig
|
|
|
|
from .workers import WorkerConfig
|
2014-08-31 09:06:39 -06:00
|
|
|
|
2015-07-08 04:35:46 -06:00
|
|
|
|
2019-10-10 02:39:35 -06:00
|
|
|
class HomeServerConfig(RootConfig):
|
|
|
|
config_classes = [
|
2021-06-18 05:15:52 -06:00
|
|
|
ModulesConfig,
|
2019-10-10 02:39:35 -06:00
|
|
|
ServerConfig,
|
2021-10-15 08:30:48 -06:00
|
|
|
RetentionConfig,
|
2019-10-10 02:39:35 -06:00
|
|
|
TlsConfig,
|
2020-07-10 11:26:36 -06:00
|
|
|
FederationConfig,
|
2020-05-11 11:45:23 -06:00
|
|
|
CacheConfig,
|
2019-10-10 02:39:35 -06:00
|
|
|
DatabaseConfig,
|
|
|
|
LoggingConfig,
|
|
|
|
RatelimitConfig,
|
|
|
|
ContentRepositoryConfig,
|
2021-08-31 16:37:07 -06:00
|
|
|
OembedConfig,
|
2019-10-10 02:39:35 -06:00
|
|
|
CaptchaConfig,
|
|
|
|
VoipConfig,
|
|
|
|
RegistrationConfig,
|
2021-04-19 12:16:34 -06:00
|
|
|
AccountValidityConfig,
|
2019-10-10 02:39:35 -06:00
|
|
|
MetricsConfig,
|
|
|
|
ApiConfig,
|
|
|
|
AppServiceConfig,
|
|
|
|
KeyConfig,
|
|
|
|
SAML2Config,
|
2020-05-08 06:30:40 -06:00
|
|
|
OIDCConfig,
|
2019-10-10 02:39:35 -06:00
|
|
|
CasConfig,
|
2020-03-02 09:36:32 -07:00
|
|
|
SSOConfig,
|
2019-10-10 02:39:35 -06:00
|
|
|
JWTConfig,
|
2020-12-18 05:33:57 -07:00
|
|
|
AuthConfig,
|
2019-10-10 02:39:35 -06:00
|
|
|
EmailConfig,
|
|
|
|
PasswordAuthProviderConfig,
|
|
|
|
PushConfig,
|
|
|
|
SpamCheckerConfig,
|
2020-06-10 10:44:34 -06:00
|
|
|
RoomConfig,
|
2019-10-10 02:39:35 -06:00
|
|
|
UserDirectoryConfig,
|
|
|
|
ConsentConfig,
|
|
|
|
StatsConfig,
|
|
|
|
ServerNoticesConfig,
|
|
|
|
RoomDirectoryConfig,
|
|
|
|
ThirdPartyRulesConfig,
|
|
|
|
TracerConfig,
|
2020-07-29 16:22:13 -06:00
|
|
|
WorkerConfig,
|
2020-04-22 06:07:41 -06:00
|
|
|
RedisConfig,
|
2021-05-24 06:57:14 -06:00
|
|
|
ExperimentalConfig,
|
2022-03-11 11:46:45 -07:00
|
|
|
BackgroundUpdateConfig,
|
2019-10-10 02:39:35 -06:00
|
|
|
]
|