Skip to content

Commit dff6a15

Browse files
Fixing route path prefix (removing redunant /api).
1 parent f479147 commit dff6a15

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

src/app-router.module.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ import { AuthModule } from './auth/auth.module';
1212
path: 'ws',
1313
module: WssModule,
1414
},
15-
{
16-
path: 'api',
17-
children: [
18-
{
19-
path: '', // Empty path here - the controller already has 'jobs' path
20-
module: JobModule,
21-
},
22-
{
23-
path: '', // Empty path here - the controller already has 'auth' path
24-
module: AuthModule,
25-
},
26-
],
27-
},
15+
// {
16+
// path: 'api',
17+
// children: [
18+
// {
19+
// path: '', // Empty path here - the controller already has 'jobs' path
20+
// module: JobModule,
21+
// },
22+
// {
23+
// path: '', // Empty path here - the controller already has 'auth' path
24+
// module: AuthModule,
25+
// },
26+
// ],
27+
// },
2828
]),
2929
CloudflareKvModule,
3030
JobModule,

0 commit comments

Comments
 (0)