peertube-plugin-livechat/server/lib/migration/settings.ts
John Livingston 7906ddf625
Prosody mode only:
Removing old modes (ConverseJS and External URI).
Work in progress.
2022-10-10 18:08:20 +02:00

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
}