Skip to content

Commit

Permalink
Merge branch 'main' into refac/test
Browse files Browse the repository at this point in the history
  • Loading branch information
Frompaje authored Sep 6, 2024
2 parents 7327a07 + bfa07a4 commit 1ce7708
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @devhatt/octopost
* @devhatt/hatts @devhatt/octopost-backend-administrators
4 changes: 2 additions & 2 deletions src/config/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { setupRoutes } from '@/config/routes';

const app = Express();

setupRoutes(app);
setupMiddlewares(app);
setupHealthCheck(app);
setupMiddlewares(app);
setupRoutes(app);

export { app };
6 changes: 5 additions & 1 deletion src/shared/routes/public-routes.ts
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
export const publicRoutes = ['/api/users', '/api/auth/login'];
export const publicRoutes = [
'/api/users',
'/api/auth/login',
'/api/healthcheck',
];

0 comments on commit 1ce7708

Please sign in to comment.