Inventory Infrastructure and Example for Suits #10

Merged
OrdisPrime merged 16 commits from inventory_basic into main 2023-06-03 18:06:22 -07:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit c929a56d2b - Show all commits

View File

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

View File

@ -1,5 +1,5 @@
AngeloTadeucci commented 2023-06-03 17:36:57 -07:00 (Migrated from github.com)
Review

use non-relative import

use non-relative import
AngeloTadeucci commented 2023-06-03 17:36:57 -07:00 (Migrated from github.com)
Review

use non-relative import

use non-relative import
OrdisPrime commented 2023-06-03 17:40:44 -07:00 (Migrated from github.com)
Review

done

done
OrdisPrime commented 2023-06-03 17:40:44 -07:00 (Migrated from github.com)
Review

done

done
import { Inventory } from "../models/inventoryModel"; import { Inventory } from "../models/inventoryModel";
import new_inventory from "@/static/fixed_responses/new_inventory.json"; import new_inventory from "@/static/fixed_responses/postTutorialInventory.json";
AngeloTadeucci commented 2023-06-03 17:36:57 -07:00 (Migrated from github.com)
Review

use non-relative import

use non-relative import
OrdisPrime commented 2023-06-03 17:40:44 -07:00 (Migrated from github.com)
Review

done

done
AngeloTadeucci commented 2023-06-03 17:36:57 -07:00 (Migrated from github.com)
Review

use non-relative import

use non-relative import
OrdisPrime commented 2023-06-03 17:40:44 -07:00 (Migrated from github.com)
Review

done

done
import config from "@/config.json"; import config from "@/config.json";
import { Types } from "mongoose"; import { Types } from "mongoose";

AngeloTadeucci commented 2023-06-03 17:36:57 -07:00 (Migrated from github.com)
Review

use non-relative import

use non-relative import
AngeloTadeucci commented 2023-06-03 17:36:57 -07:00 (Migrated from github.com)
Review

use non-relative import

use non-relative import
OrdisPrime commented 2023-06-03 17:40:44 -07:00 (Migrated from github.com)
Review

done

done
OrdisPrime commented 2023-06-03 17:40:44 -07:00 (Migrated from github.com)
Review

done

done