Commit e1ee87b
committed
fix: Add AuthModule import to GraphModule
🔧 Fix GraphModule Dependency Injection
## Issue Fixed:
- Backend still failing with GraphModule dependency error
- GraphModule missing AuthModule import for JwtAuthGuard
- GraphController uses JwtAuthGuard but GraphModule doesn't have AuthService
## Solution:
- Added AuthModule import to GraphModule
- GraphModule now has access to AuthService
- JwtAuthGuard can now resolve AuthService dependency
## Key Change:
- GraphModule: Added AuthModule import
- GraphController: Now has access to AuthService via AuthModule
This completes the dependency injection fixes for all modules
using JwtAuthGuard in the NestJS application.1 parent 9be0d17 commit e1ee87b
1 file changed
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | | - | |
| 12 | + | |
12 | 13 | | |
13 | 14 | | |
14 | 15 | | |
| |||
0 commit comments