Skip to content

Commit

Permalink
feat(swaggerconfig): add path to category's route
Browse files Browse the repository at this point in the history
Refs #94
  • Loading branch information
LucasAlves71 committed Feb 13, 2025
1 parent 0016f05 commit af223b3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions backend/src/main/config/swaggerConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const options = {
tags: [
{ name: "Users", description: "User management" },
{ name: "Transactions", description: "Transaction management" },
{ name: "Categories", description: "Category management" },
],
components: {
securitySchemes: {
Expand All @@ -40,6 +41,7 @@ const options = {
apis: [
"./src/main/routes/user/userRoutes.ts",
"./src/main/routes/transaction/transactionRoutes.ts",
"./src/main/routes/category/categoryRoutes.ts",
],
};

Expand Down

0 comments on commit af223b3

Please sign in to comment.