(
private auth: AuthService,
@Inject(AUTH_CONFIG) private cfg: AuthConfig,
)
| 22 | @Controller("auth") |
| 23 | export class AuthController { |
| 24 | constructor( |
| 25 | private auth: AuthService, |
| 26 | @Inject(AUTH_CONFIG) private cfg: AuthConfig, |
| 27 | ) {} |
| 28 | |
| 29 | private setRefreshCookie(res: Response, token: string) { |
| 30 | res.cookie(COOKIE, token, { |
nothing calls this directly
no outgoing calls
no test coverage detected