Skip to content

Commit

Permalink
fix: 🐛 remove auth module in subgraphql
Browse files Browse the repository at this point in the history
  • Loading branch information
zhumeisongsong committed Dec 10, 2024
1 parent 6db9607 commit 5c01a2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions apps/tasks/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import {
tasksAppConfig,
} from '@shared/config';
import { TasksModule } from '@tasks/interface-adapters';
import { AuthModule } from '@auth/interface-adapters';

import { AppController } from './app.controller';
import { AppService } from './app.service';
Expand All @@ -32,8 +31,7 @@ import { AppService } from './app.service';
sortSchema: true,
plugins: [ApolloServerPluginInlineTrace()],
}),
TasksModule,
AuthModule,
TasksModule
],
controllers: [AppController],
providers: [AppService],
Expand Down
4 changes: 1 addition & 3 deletions apps/users/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import {
authConfig,
} from '@shared/config';
import { UsersModule } from '@users/interface-adapters';
import { AuthModule } from '@auth/interface-adapters';

import { AppController } from './app.controller';
import { AppService } from './app.service';
Expand All @@ -38,8 +37,7 @@ import { AppService } from './app.service';
sortSchema: true,
plugins: [ApolloServerPluginInlineTrace()],
}),
UsersModule,
AuthModule,
UsersModule
],
controllers: [AppController],
providers: [AppService],
Expand Down

0 comments on commit 5c01a2d

Please sign in to comment.