aec3094
1
2
3
4
5
6
7
8
9
import { Config, Env } from '@n8n/config'; @Config export class PushConfig { /** Backend to use for push notifications */ @Env('N8N_PUSH_BACKEND') backend: 'sse' | 'websocket' = 'websocket'; }