From 1ef37b6741d7006cee9aa595bf979a7bd76ac9c4 Mon Sep 17 00:00:00 2001 From: Jonathan Adams Date: Sat, 2 Nov 2019 00:36:32 +0000 Subject: [PATCH] Corrected error in revoke token callback (#346) --- docs/frontend_external_auth.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/frontend_external_auth.md b/docs/frontend_external_auth.md index f4ee957e..1b67e2d8 100644 --- a/docs/frontend_external_auth.md +++ b/docs/frontend_external_auth.md @@ -47,11 +47,11 @@ When the user presses the logout button on the profile page, the external app wi ```js window.externalApp.revokeExternalAuth({ - callback: 'externalAuthSetToken' + callback: 'externalAuthRevokeToken' }); // or window.webkit.messageHandlers.revokeExternalAuth.postMessage({ - callback: 'externalAuthSetToken' + callback: 'externalAuthRevokeToken' }); ```