mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-19 20:29:17 +00:00
all routes changed to typescript
This commit is contained in:
12
backend/src/routes/messageRoutes.ts
Normal file
12
backend/src/routes/messageRoutes.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { Router } from "express";
|
||||
// import isAuth from "../middleware/isAuth";
|
||||
|
||||
// import { index, store } from "../controllers/MessageController";
|
||||
|
||||
const messageRoutes = Router();
|
||||
|
||||
// messageRoutes.get("/messages/:ticketId", isAuth, index);
|
||||
|
||||
// messageRoutes.post("/messages/:ticketId", isAuth, store);
|
||||
|
||||
export default messageRoutes;
|
||||
Reference in New Issue
Block a user