-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
削除するレースを配列で指定するよう変更 #297
削除するレースを配列で指定するよう変更 #297
Conversation
proto/spec/v1/userdata.proto
Outdated
@@ -258,7 +258,7 @@ message EditRaceResponse {} | |||
|
|||
message DeleteRaceResultRequest { | |||
// 対象を指定するため必須 | |||
uint32 id = 1 [(validate.rules).uint32.gte = 1]; | |||
repeated uint32 id = 1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
あ!!!!!!伝達に不備がありました!!!!!!!
削除対象の馬を配列で指定したいです!!!!!!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
馬はどう指定するのがいいですか?IDとか馬番とか
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
結果まるごと消し飛ばすと思ってた
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registerに揃えてもらえると嬉しいです
repeated RaceDetail.Member members;
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
結果まるごと吹き飛ばすと、登録できた馬と登録できていない馬があるレースで二重に削除することになることに気が付きました
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
上追記ですが、レース結果の編集はレース結果のみではなく、それぞれの履歴に追記する作業や勝利数のカウントなどもしているからです
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
なるほどなぁ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ありがとうございます!
close #296