/
home
/
infinitibizsol
/
.trash
/
routes.4
/
File Upload :
llllll
Current File: /home/infinitibizsol/.trash/routes.4/serverRoutes.js
import express from "express"; const router = express.Router(); import AuthRoute from "./authRoutes"; //user routes import User from "./user/index"; //contact routes import Contact from "./contact/index"; //common routes import Common from "./common/index"; router.use("/auth", AuthRoute); //User routes router.use("/user", User.UserRoute); router.use("/employment-info", User.EmploymentinfoRoute); router.use("/system", User.SystemRoute); router.use("/signature", User.SignatureRoute); router.use("/email-setup", User.EmailSetupRoute); router.use("/email-signature", User.EmailSignatureRoute); router.use("/additional-contact", User.AdditionalContactRoute); router.use("/account-infromation", User.AccountInformationRoute); router.use("/text-message", User.TextMessageRoute); //Contact routes router.use("/contact", Contact.ContactRoute); router.use("/linked-account", Contact.LinkedAccountRoute); router.use("/expiries", Contact.XDateRoute); router.use("/employer", Contact.EmployerRoute); //Common routes router.use("/basic-contact-info", Common.BasicContactRoute); router.use("/personal-info", Common.personalInfoRoute); router.use("/social-media", Common.SocialMediaRoute); router.use("/note", Common.NoteRoute); router.use("/address", Common.AddressRoute); router.use("/goals", Common.GoalsRoute); router.use("/task", Common.TaskRoute); // router.use("/file", Common.FileRoute); router.use("/file", Common.UploadImageRoute); export default router;
Copyright ©2k19 -
Hexid
|
Tex7ure