修复订阅链接正则判断

This commit is contained in:
whyour
2026-07-02 00:08:39 +08:00
parent e92ddb0aed
commit 38d84f9f31
5 changed files with 23 additions and 21 deletions
+8
View File
@@ -1,5 +1,13 @@
import { AuthInfo, TokenInfo } from '../data/system';
export function isDefaultAuthInfo(authInfo: AuthInfo): boolean {
return (
Object.keys(authInfo).length === 2 &&
authInfo.username === 'admin' &&
authInfo.password === 'admin'
);
}
/**
* Validates if a token exists in the authentication info.
* Supports both legacy string tokens and new TokenInfo array format.