|
@@ -8,6 +8,7 @@ import com.baomidou.kisso.annotation.Login
|
|
|
import com.gxzc.zen.api.sys.service.ISysUserService
|
|
|
import com.gxzc.zen.common.base.BaseController
|
|
|
import com.gxzc.zen.common.dto.RequestDto
|
|
|
+import com.gxzc.zen.common.dto.ResponseDto
|
|
|
import com.gxzc.zen.common.exception.ZenException
|
|
|
import com.gxzc.zen.common.exception.ZenExceptionEnum
|
|
|
import com.gxzc.zen.umps.util.MD5Salt
|
|
@@ -62,13 +63,13 @@ class AuthController : BaseController() {
|
|
|
SSOHelper.setSSOCookie(getRequest(), getResponse(), SSOToken().also {
|
|
|
it.uid = user.id.toString()
|
|
|
}, true)
|
|
|
- return ResponseEntity.ok(null)
|
|
|
+ return ResponseEntity.ok(ResponseDto())
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "登出")
|
|
|
@DeleteMapping("/logout")
|
|
|
fun logout(): ResponseEntity<*> {
|
|
|
SSOHelper.clearLogin(getRequest(), getResponse())
|
|
|
- return ResponseEntity.ok(null)
|
|
|
+ return ResponseEntity.ok(ResponseDto())
|
|
|
}
|
|
|
}
|