mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-08 19:16:37 +08:00
Update access.ts
This commit is contained in:
parent
a4b9d9f933
commit
a241df0919
@ -29,7 +29,8 @@ export const useAccessStore = create<AccessControlStore>()(
|
||||
set((state) => ({ token }));
|
||||
},
|
||||
isAuthorized() {
|
||||
return !!get().token || !!get().accessCode;
|
||||
// has token or has code or disabled access control
|
||||
return !!get().token || !!get().accessCode || !get().enabledAccessControl();
|
||||
},
|
||||
}),
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user