2024-05-23 09:42:14 +00:00
|
|
|
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2022-01-11 00:29:33 +00:00
|
|
|
import type { RegisterServerOptions } from '@peertube/peertube-types'
|
2021-06-02 17:16:27 +00:00
|
|
|
|
|
|
|
async function migrateSettings (options: RegisterServerOptions): Promise<void> {
|
|
|
|
const logger = options.peertubeHelpers.logger
|
|
|
|
logger.info('Checking if there is a migration script to launch...')
|
2022-10-10 16:08:20 +00:00
|
|
|
// 2022-10-10: as we removed the «chat-type» settings, there is no migration needed for now.
|
2021-06-02 17:16:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export {
|
|
|
|
migrateSettings
|
|
|
|
}
|