-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
88 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import express from "express"; | ||
import patientAuthRoutes from "./patient/PatientAuthRoutes"; | ||
import AuthRoutes from "./patient/PatientAuthRoutes"; | ||
import ProtectedRoutes from "./patient/PatientProtectedRoutes"; | ||
import { errorHandler } from "../middlewares/errorHandler"; | ||
import patientRoutes from "./patient/patientRoutes"; | ||
|
||
const app = express(); | ||
app.use("/patient/auth", patientAuthRoutes); | ||
app.use("/patient", patientRoutes); | ||
app.use("/patient/auth", AuthRoutes); | ||
app.use("/patient", ProtectedRoutes); | ||
app.use(errorHandler); | ||
|
||
export default app; |
14 changes: 14 additions & 0 deletions
14
server/src/presentation/routers/patient/PatientProtectedRoutes.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import express from "express"; | ||
import PatientAuthMiddleware from "../../middlewares/PatientAuthMiddleware"; | ||
import TokenService from "../../../infrastructure/services/TokenService"; | ||
|
||
const patientRoutes = express(); | ||
|
||
const tokenService = new TokenService(); | ||
const authenticatePatient = new PatientAuthMiddleware(tokenService); | ||
|
||
patientRoutes.get("/profile", authenticatePatient.exec, (req, res, next) => { | ||
res.status(200).json({ name: "sinan", age: 19, phone: 12312312312 }); | ||
}); | ||
|
||
export default patientRoutes; |
This file was deleted.
Oops, something went wrong.
1298481
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
avm-care – ./
avm-care-git-main-sinans-projects-8d312afe.vercel.app
avm-care.vercel.app
avm-care-sinans-projects-8d312afe.vercel.app