Use new Google for Web signin, the old way will be deprecated Mar 31st 2023

This commit is contained in:
Rob Vermaas
2023-03-13 16:44:09 +01:00
parent ecfa817d30
commit f88bef15ed
2 changed files with 5 additions and 6 deletions

View File

@@ -82,7 +82,7 @@
function onGoogleSignIn(googleUser) {
requestJSON({
url: "[% c.uri_for('/google-login') %]",
data: "id_token=" + googleUser.getAuthResponse().id_token,
data: "id_token=" + googleUser.credential,
type: 'POST',
success: function(data) {
window.location.reload();
@@ -91,9 +91,6 @@
return false;
};
$("#google-signin").click(function() {
$(".g-signin2:first-child > div").click();
});
</script>
[% END %]