mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-06-09 17:03:57 +02: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();
|
|
}
|
|
}
|