mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-09 23:49:27 +08:00
* feat(auth): add logging for token renewal process and new error code for stream requests * feat(auth): session expiration check everytime * feat(auth): validate token validity period against session validity period * fix(auth): correct wording for session validity period in localization file * fix(auth): update redirect logic to handle specific auth error codes * fix(auth): correct error response structure for token renewal and stream requests * fix(auth): add token expiration check to update token status * fix(notification): add skipAuth option to SSE stream request * fix(auth): simplify redirect logic in auth check middleware * fix(auth): update logging to include request headers and enhance error handling in auth middleware
11 lines
334 B
TypeScript
11 lines
334 B
TypeScript
/**
|
|
* This file is part of the NocoBase (R) project.
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
* Authors: NocoBase Team.
|
|
*
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
*/
|
|
|
|
export { AuthErrorCode } from './auth';
|