(@Session() session: SessionTypes)
| 83 | @ApiOkResponse({ type: ResponseDto }) |
| 84 | @ApiOperation({ summary: '退出登录' }) |
| 85 | async logout(@Session() session: SessionTypes) { |
| 86 | const response = await this.authService.logout(session); |
| 87 | return response; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * @description: 获取当前用户信息 |
nothing calls this directly
no outgoing calls
no test coverage detected