Add is email verified API
This commit is contained in:
parent
5635779253
commit
165fe024d9
@ -11,8 +11,12 @@ service Accounts {
|
|||||||
rpc SignUp (AccountWithPassword) returns (AccountFullWithToken) {}
|
rpc SignUp (AccountWithPassword) returns (AccountFullWithToken) {}
|
||||||
rpc SignIn (AccountWithPassword) returns (AccountFullWithToken) {}
|
rpc SignIn (AccountWithPassword) returns (AccountFullWithToken) {}
|
||||||
rpc ResetPassword (AccountData) returns (google.protobuf.Empty) {}
|
rpc ResetPassword (AccountData) returns (google.protobuf.Empty) {}
|
||||||
|
rpc IsEmailVerified (AccountData) returns (EmailVerified) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message EmailVerified {
|
||||||
|
bool verified = 1;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Represents a environment UUID only
|
* Represents a environment UUID only
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user