style: fix linting issues met Prettier
This commit is contained in:
parent
a824cdff94
commit
783c91b2e3
11 changed files with 112 additions and 93 deletions
|
@ -1,9 +1,5 @@
|
|||
import express from "express";
|
||||
import {
|
||||
createInvitationHandler,
|
||||
deleteInvitationForHandler,
|
||||
getAllInvitationsHandler
|
||||
} from "../controllers/teacher-invitations";
|
||||
import express from 'express';
|
||||
import { createInvitationHandler, deleteInvitationForHandler, getAllInvitationsHandler } from '../controllers/teacher-invitations';
|
||||
|
||||
const router = express.Router({ mergeParams: true });
|
||||
|
||||
|
@ -13,5 +9,4 @@ router.post('/', createInvitationHandler);
|
|||
|
||||
router.delete('/:sender/:receiver/:classId', deleteInvitationForHandler);
|
||||
|
||||
|
||||
export default router;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue