* store n8n version string in a const and use that everywhere * reduce code duplication between Server and WebhookServer * unify redis checks * fix linting
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import { AbstractServer } from '@/AbstractServer';
|
|
|
|
export class WebhookServer extends AbstractServer {
|
|
async configure() {
|
|
this.setupWebhookEndpoint();
|
|
this.setupWaitingWebhookEndpoint();
|
|
}
|
|
}
|