mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
5f4c19da35
Co-authored-by: Opender Singh <opender.singh@konghq.com>
17 lines
627 B
TypeScript
17 lines
627 B
TypeScript
import { send } from '../../network/network';
|
|
import type { Request } from '../../models/request';
|
|
import * as models from '../../models';
|
|
import type { ExtraRenderInfo } from '../../common/render';
|
|
|
|
export function init(activeEnvironmentId: string | null) {
|
|
return {
|
|
network: {
|
|
async sendRequest(request: Request, extraInfo?: ExtraRenderInfo) {
|
|
const responsePatch = await send(request._id, activeEnvironmentId || undefined, extraInfo);
|
|
const settings = await models.settings.getOrCreate();
|
|
return models.response.create(responsePatch, settings.maxHistoryResponses);
|
|
},
|
|
},
|
|
};
|
|
}
|