Merge pull request #851 from nick-botticelli/google-signin-credentials

Add Google sign in credential to protobufs
This commit is contained in:
Roderick van Domburg 2021-09-21 19:46:27 +02:00 committed by GitHub
commit 7a730f30ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -46,3 +46,8 @@ message SamsungSignInCredential {
string id_token = 3;
string token_endpoint_url = 4;
}
message GoogleSignInCredential {
string auth_code = 1;
string redirect_uri = 2;
}

View file

@ -52,6 +52,7 @@ message LoginRequest {
credentials.ParentChildCredential parent_child_credential = 105;
credentials.AppleSignInCredential apple_sign_in_credential = 106;
credentials.SamsungSignInCredential samsung_sign_in_credential = 107;
credentials.GoogleSignInCredential google_sign_in_credential = 108;
}
}