Add webhook prod diagnostic script and finalize session updates
This commit is contained in:
8
backend/check-deps.ts
Normal file
8
backend/check-deps.ts
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import 'reflect-metadata';
|
||||||
|
import { AuthController } from './src/auth/auth.controller';
|
||||||
|
import { AuthService } from './src/auth/auth.service';
|
||||||
|
|
||||||
|
const p = Reflect.getMetadata('design:paramtypes', AuthController);
|
||||||
|
console.log('AuthController constructor metadata:', p?.map((t: any) => t?.name || String(t)));
|
||||||
|
const q = Reflect.getMetadata('design:paramtypes', AuthService);
|
||||||
|
console.log('AuthService constructor metadata:', q?.map((t: any) => t?.name || String(t)));
|
||||||
Reference in New Issue
Block a user