upload 上传 签名 直接上传都可以

This commit is contained in:
eson
2023-07-07 17:49:12 +08:00
parent 975fe89eca
commit 7818b88b70
9 changed files with 120 additions and 66 deletions

View File

@@ -60,7 +60,7 @@ func (info *UserInfo) IsGuest() bool {
// IsOnlooker 白板用户: 非登录用户, 非游客, 判断为白板用户
func (info *UserInfo) IsOnlooker() bool {
return info.UserId != 0 && info.GuestId != 0
return info.UserId == 0 && info.GuestId == 0
}
type BackendUserInfo struct {