signinWithoutSecurityCode is added
This commit is contained in:
parent
96bdb1eb96
commit
af8980bcb2
|
@ -7,3 +7,4 @@ package bet.beteran.c2se.frontend.identity;
|
||||||
// subject = bet.beteran.c2se.frontend.identity.Captcha
|
// subject = bet.beteran.c2se.frontend.identity.Captcha
|
||||||
|
|
||||||
// subject = bet.beteran.c2se.frontend.identity.Signin
|
// subject = bet.beteran.c2se.frontend.identity.Signin
|
||||||
|
// subject = bet.beteran.c2se.frontend.identity.SigninWithoutSecurityCode
|
||||||
|
|
|
@ -55,3 +55,17 @@ message SigninResponse {
|
||||||
optional bet.protobuf.rpc.Error error = 1;
|
optional bet.protobuf.rpc.Error error = 1;
|
||||||
optional Result result = 2;
|
optional Result result = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
message SigninWithoutSecurityCodeRequest {
|
||||||
|
string username = 1;
|
||||||
|
string password = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message SigninWithoutSecurityCodeResponse {
|
||||||
|
message Result {
|
||||||
|
string access_token = 1;
|
||||||
|
}
|
||||||
|
optional bet.protobuf.rpc.Error error = 1;
|
||||||
|
optional Result result = 2;
|
||||||
|
}
|
||||||
|
|
|
@ -79,6 +79,25 @@ message SigninResponse {
|
||||||
optional Result result = 2;
|
optional Result result = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// subject = bet.beteran.ss.identity.SigninWithoutSecurityCode
|
||||||
|
message SigninWithoutSecurityCodeRequest {
|
||||||
|
message Request {
|
||||||
|
string username = 1;
|
||||||
|
string password = 2;
|
||||||
|
}
|
||||||
|
bet.beteran.core.network.Client client = 1;
|
||||||
|
Request request = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message SigninWithoutSecurityCodeResponse {
|
||||||
|
message Result {
|
||||||
|
string access_token = 1;
|
||||||
|
}
|
||||||
|
optional bet.protobuf.rpc.Error error = 1;
|
||||||
|
optional Result result = 2;
|
||||||
|
}
|
||||||
|
|
||||||
// subject = bet.beteran.ss_event.identity.AfterSignin
|
// subject = bet.beteran.ss_event.identity.AfterSignin
|
||||||
message AfterSigninEvent {
|
message AfterSigninEvent {
|
||||||
message Event {
|
message Event {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user