gristlabs_grist-core/static/message.html
Jarosław Sadziński 291bcd17ff (core) Google auth endpoint has not responded with auth code
Summary:
Google Auth popup wasn't able to resolve origin from gristConfig.
Moving this reponsability to server side, where it gets calculated from initial request.

Test Plan: n/a

Reviewers: dsagal, paulfitz

Reviewed By: paulfitz

Differential Revision: https://phab.getgrist.com/D2935
2021-07-21 20:18:04 +02:00

13 lines
190 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf8">
</head>
<body>
<!-- INSERT MESSAGE -->
<script>
window.opener.postMessage(message, message.origin);
</script>
</body>
</html>