Skip to content

Commit

Permalink
update fields. (#140)
Browse files Browse the repository at this point in the history
* Update relation.proto to use openim.sdkws.BlackInfo for getIncrementalBlacksResp and add GetSpecifiedBlacksReq and GetSpecifiedBlacksResp

* feat: GetSpecifiedUserGroupRequestInfo

* remove unused fields.

* update

* Update constants.

* update fields.
  • Loading branch information
mo3et authored Sep 27, 2024
1 parent 6a8e70e commit 18c3be2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions constant/constant.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ const (
Online = 1
Offline = 0

Registered = 1
UnRegistered = 0
Registered = true
UnRegistered = false

// MsgReceiveOpt.
ReceiveMessage = 0
Expand Down
8 changes: 4 additions & 4 deletions user/user.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion user/user.proto
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ message accountCheckReq {
message accountCheckResp {
message singleUserStatus {
string userID = 1;
bool accountStatus = 2;
int32 accountStatus = 2;
}
repeated singleUserStatus results = 1;
}
Expand Down

0 comments on commit 18c3be2

Please sign in to comment.