refactor(core): Move webhook repository to @n8n/db (#15318)

This commit is contained in:
Iván Ovejero
2025-05-12 17:30:59 +02:00
committed by GitHub
parent d683a54da0
commit b2d8a1cb10
4 changed files with 5 additions and 3 deletions
@@ -1,10 +0,0 @@
import { WebhookEntity } from '@n8n/db';
import { Service } from '@n8n/di';
import { DataSource, Repository } from '@n8n/typeorm';
@Service()
export class WebhookRepository extends Repository<WebhookEntity> {
constructor(dataSource: DataSource) {
super(WebhookEntity, dataSource.manager);
}
}