Skip to content

Commit

Permalink
refactor: update UserDetail field name from 'username' to 'nickname'
Browse files Browse the repository at this point in the history
  • Loading branch information
Mingle-2012 committed Aug 10, 2024
1 parent a6cd8ef commit b95f0ba
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions meowcloud/user/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ message UserPreview {

message UserDetail {
string id = 1;
string username = 2;
string nickname = 2;
string bio = 3;
string avatar = 4;
int64 updatedAt = 5;
Expand Down Expand Up @@ -48,19 +48,3 @@ message UserDetail {
int32 points = 16;
repeated string achievements = 17;
}

message Like {
string targetId = 1;
string associatedId = 2;
}

message ItemScore {
string id = 1;
int64 score = 2;
}

enum LikeType {
Unknown = 0;
Cat = 1;
Album = 2;
}

0 comments on commit b95f0ba

Please sign in to comment.