name is changed

This commit is contained in:
병준 박 2022-08-06 03:59:02 +00:00
parent 99bf1ad793
commit 85956b6fd9
3 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ import "protobuf/rpc/error.proto";
// subject = bet.beteran.c2se.backend.identity.Signin
message SigninRequest {
string token = 1;
string security_code_hash = 1;
string security_code = 2;
string username = 3;
string password = 4;

View File

@ -6,7 +6,7 @@ import "protobuf/rpc/error.proto";
// subject = bet.beteran.c2se.frontend.identity.Signin
message SigninRequest {
string token = 1;
string security_code_hash = 1;
string security_code = 2;
string username = 3;
string password = 4;

View File

@ -41,7 +41,7 @@ message CaptchaRequest {
message CaptchaResponse {
message Result {
string token = 1;
string security_code_hash = 1;
string image = 2;
}
optional bet.protobuf.rpc.Error error = 1;
@ -52,7 +52,7 @@ message CaptchaResponse {
// subject = bet.beteran.ss.member.identity.Signin
message SigninRequest {
bet.beteran.core.network.Client client = 1;
string token = 2;
string security_code_hash = 2;
string security_code = 3;
string username = 4;
string password = 5;