hit thumbs up and subscribe

This commit is contained in:
Ordis 2023-06-04 02:37:33 +02:00
parent a4cd721a6a
commit c929a56d2b
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
import { RequestHandler } from "express";
import aggregateSessions from "@/static/fixed_responses/aggregateSessions.json";
const aggregateSessionsController: RequestHandler = (_req, res) => {
res.json({});
res.json(aggregateSessions);
};
export { aggregateSessionsController };

View File

@ -1,5 +1,5 @@
import { Inventory } from "../models/inventoryModel";
import new_inventory from "@/static/fixed_responses/new_inventory.json";
import new_inventory from "@/static/fixed_responses/postTutorialInventory.json";
import config from "@/config.json";
import { Types } from "mongoose";