b4dabfeeb9
Debug mode is no more triggered by the NODE_ENV value, but by testing the existance of a file in the plugin data directory.
11 lines
356 B
TypeScript
11 lines
356 B
TypeScript
import type { RegisterServerOptions } from '@peertube/peertube-types'
|
|
import { newResult, TestResult } from './utils'
|
|
|
|
export async function diagBackend (test: string, _options: RegisterServerOptions): Promise<TestResult> {
|
|
const result = newResult(test)
|
|
result.label = 'Backend connection'
|
|
result.ok = true
|
|
result.next = 'debug'
|
|
return result
|
|
}
|