2017-07-10 10:44:15 -04:00
|
|
|
# Copyright 2017 Vector Creations Ltd
|
2018-03-28 09:03:37 -04:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2017-07-10 10:44:15 -04: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.
|
|
|
|
|
2022-05-31 20:28:17 -04:00
|
|
|
from typing import TYPE_CHECKING
|
2021-02-17 08:41:47 -05:00
|
|
|
|
2022-05-31 20:28:17 -04:00
|
|
|
from synapse.storage._base import SQLBaseStore
|
|
|
|
from synapse.storage.database import DatabasePool, LoggingDatabaseConnection
|
2017-07-10 10:44:15 -04:00
|
|
|
|
2021-11-02 11:46:48 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2017-07-10 10:44:40 -04:00
|
|
|
|
2022-05-31 20:28:17 -04:00
|
|
|
class GroupServerStore(SQLBaseStore):
|
2021-12-13 12:05:00 -05:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
database: DatabasePool,
|
|
|
|
db_conn: LoggingDatabaseConnection,
|
|
|
|
hs: "HomeServer",
|
|
|
|
):
|
2022-06-03 12:13:35 -04:00
|
|
|
# Register a legacy groups background update as a no-op.
|
|
|
|
database.updates.register_noop_background_update("local_group_updates_index")
|
2021-11-02 11:46:48 -04:00
|
|
|
super().__init__(database, db_conn, hs)
|