mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
14 lines
290 B
TypeScript
14 lines
290 B
TypeScript
import { hooksAddFakeDoorFeatures } from '@/hooks/utils';
|
|
import type { PartialDeep } from 'type-fest';
|
|
import type { ExternalHooks } from '@/types';
|
|
|
|
export const n8nCloudHooks: PartialDeep<ExternalHooks> = {
|
|
app: {
|
|
mount: [
|
|
() => {
|
|
hooksAddFakeDoorFeatures();
|
|
},
|
|
],
|
|
},
|
|
};
|