7906ddf625
Removing old modes (ConverseJS and External URI). Work in progress.
12 lines
399 B
TypeScript
12 lines
399 B
TypeScript
import type { RegisterServerOptions } from '@peertube/peertube-types'
|
|
|
|
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: as we removed the «chat-type» settings, there is no migration needed for now.
|
|
}
|
|
|
|
export {
|
|
migrateSettings
|
|
}
|