fix: lint + format
This commit is contained in:
parent
ac778981e2
commit
acfffda82d
8 changed files with 162 additions and 118 deletions
|
@ -1,11 +1,11 @@
|
|||
import express from "express";
|
||||
import { getAllLearningObjects } from "../controllers/learningObjects.js";
|
||||
import express from 'express';
|
||||
import { getAllLearningObjects } from '../controllers/learningObjects.js';
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
// arg: hruid learningPath
|
||||
// query: language
|
||||
// Arg: hruid learningPath
|
||||
// Query: language
|
||||
// Route to fetch list of learning objects based on hruid of learning path
|
||||
router.get("/:hruid", getAllLearningObjects);
|
||||
router.get('/:hruid', getAllLearningObjects);
|
||||
|
||||
export default router;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue