Skip to content

Commit a9a768c

Browse files
Merge pull request #6 from codebuilderinc/refactor/remove-graphql-rest-consolidation
Fixing route path prefix (removing redunant /api).
2 parents 3296214 + dff6a15 commit a9a768c

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)