Simpler forgot password functionality (#2393)

* Simpler forgot password functionality (Server/Client)
This commit is contained in:
woogerboy21 2017-02-15 17:41:40 -05:00 committed by Zach H
parent b64eab204c
commit 0cfa6863d5
36 changed files with 1190 additions and 173 deletions

View file

@ -0,0 +1,9 @@
syntax = "proto2";
import "response.proto";
message Response_ForgotPasswordRequest {
extend Response {
optional Response_ForgotPasswordRequest ext = 1016;
}
optional bool challenge_email = 1;
}