mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
8b19fdd5f0
* 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();
|
|
}
|
|
}
|