From b614756b99ae410871d3e2df2478bfc9ac2440b8 Mon Sep 17 00:00:00 2001 From: wawhal Date: Tue, 8 Jan 2019 13:38:07 +0530 Subject: [PATCH 1/2] remove auth webhook ref from docs --- docs/graphql/manual/auth/webhook-examples.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/graphql/manual/auth/webhook-examples.rst b/docs/graphql/manual/auth/webhook-examples.rst index 5913f5ab73ce0..e15e0b59a9a4e 100644 --- a/docs/graphql/manual/auth/webhook-examples.rst +++ b/docs/graphql/manual/auth/webhook-examples.rst @@ -21,8 +21,7 @@ Once deployed, you can use any of the following endpoints as your auth webhook i - ``/simple/webhook`` (`View source `__) - ``/firebase/webhook`` (`View source `__) -- ``/auth0/webhook`` (`View source `__) .. note:: - If you are using ``auth0`` or ``firebase`` you will have to set the associated environment variables. + If you are using ``firebase`` you will have to set the associated environment variables. From 25546ac00aaa0a6e4f014ac43921d949530338bf Mon Sep 17 00:00:00 2001 From: wawhal Date: Thu, 24 Jan 2019 20:23:23 +0530 Subject: [PATCH 2/2] fix a bug where modify trigger ops failed --- .../components/Services/EventTrigger/Modify/OperationEditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/src/components/Services/EventTrigger/Modify/OperationEditor.js b/console/src/components/Services/EventTrigger/Modify/OperationEditor.js index 51c57be747a57..640ebfae459fd 100644 --- a/console/src/components/Services/EventTrigger/Modify/OperationEditor.js +++ b/console/src/components/Services/EventTrigger/Modify/OperationEditor.js @@ -111,7 +111,7 @@ class OperationEditor extends React.Component { dispatch( toggleQueryType( qt, - allTableColumns, + allTableColumns.map(c => c.name), !modifyTrigger.definition[qt] ) );