From 1d2f274a3771f41ee24be4601c33cd0dc9d79cc5 Mon Sep 17 00:00:00 2001 From: Mohamed Marrouchi Date: Wed, 13 Nov 2024 01:23:24 +0000 Subject: [PATCH] feat: add http module for plugins --- api/src/plugins/plugins.module.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/src/plugins/plugins.module.ts b/api/src/plugins/plugins.module.ts index 018bd7df..d1080cf2 100644 --- a/api/src/plugins/plugins.module.ts +++ b/api/src/plugins/plugins.module.ts @@ -6,6 +6,7 @@ * 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file). */ +import { HttpModule } from '@nestjs/axios'; import { Global, Module } from '@nestjs/common'; import { MongooseModule } from '@nestjs/mongoose'; import { InjectDynamicProviders } from 'nestjs-dynamic-providers'; @@ -40,6 +41,7 @@ import { PluginService } from './plugins.service'; CmsModule, AttachmentModule, ChatModule, + HttpModule, ], providers: [PluginService], exports: [PluginService],