mirror of
https://github.com/cheveguerra/whaticket-community.git
synced 2026-04-20 04:39:20 +00:00
26 lines
775 B
TypeScript
26 lines
775 B
TypeScript
import express from "express";
|
|
import isAuth from "../middleware/isAuth";
|
|
|
|
import * as ContactController from "../controllers/ContactController";
|
|
import * as ImportPhoneContactsController from "../controllers/ImportPhoneContactsController";
|
|
|
|
const contactRoutes = express.Router();
|
|
|
|
contactRoutes.post(
|
|
"/contacts/import",
|
|
isAuth,
|
|
ImportPhoneContactsController.store
|
|
);
|
|
|
|
contactRoutes.get("/contacts", isAuth, ContactController.index);
|
|
|
|
contactRoutes.get("/contacts/:contactId", isAuth, ContactController.show);
|
|
|
|
contactRoutes.post("/contacts", isAuth, ContactController.store);
|
|
|
|
contactRoutes.put("/contacts/:contactId", isAuth, ContactController.update);
|
|
|
|
contactRoutes.delete("/contacts/:contactId", isAuth, ContactController.remove);
|
|
|
|
export default contactRoutes;
|