mirror of
https://github.com/aykhans/slash-e.git
synced 2025-06-15 04:17:50 +00:00
feat: implement user setting service
This commit is contained in:
@ -4,6 +4,7 @@ package slash.api.v2;
|
||||
|
||||
import "google/api/annotations.proto";
|
||||
import "google/api/client.proto";
|
||||
import "google/protobuf/field_mask.proto";
|
||||
|
||||
option go_package = "gen/api/v2";
|
||||
|
||||
@ -44,7 +45,11 @@ message UpdateUserSettingRequest {
|
||||
// id is the user id.
|
||||
int32 id = 1;
|
||||
|
||||
// user_setting is the user setting to update.
|
||||
UserSetting user_setting = 2;
|
||||
|
||||
// update_mask is the field mask to update the user setting.
|
||||
google.protobuf.FieldMask update_mask = 3;
|
||||
}
|
||||
|
||||
message UpdateUserSettingResponse {
|
||||
|
Reference in New Issue
Block a user