mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-09 11:35:59 +08:00
Error code standardization
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package check
|
||||
|
||||
import (
|
||||
"Open_IM/pkg/common/token_verify"
|
||||
"context"
|
||||
)
|
||||
|
||||
func Access(ctx context.Context, ownerUserID string) (err error) {
|
||||
_, err = GetUsersInfo(ctx, ownerUserID)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return token_verify.CheckAccessV3(ctx, ownerUserID)
|
||||
}
|
||||
Reference in New Issue
Block a user