From 506ab7de117138d438ef65c2e03bf2742db0777d Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 22 Jul 2020 23:49:30 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 6 +++++- ayanova/src/api/open-object-handler.js | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 44433c0e..1938e3c6 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -11,7 +11,11 @@ ____________ ## CURRENT STAGE: - +todo: Make this route work + http://localhost:8080/open?type=Widget&id=104 + if user not logged in then it should login first then go to object + if user is logged in then it should just open that object + there need be no form "open" anywhere todo: open object link url not working at client, asks for login but then doesn't navigate like it should todo: test notification in alternate language todo: subscription form should autofill in user's personal email address when they pick a new email subscription but still let them change it diff --git a/ayanova/src/api/open-object-handler.js b/ayanova/src/api/open-object-handler.js index 21ea103a..5b3f7a0c 100644 --- a/ayanova/src/api/open-object-handler.js +++ b/ayanova/src/api/open-object-handler.js @@ -20,7 +20,9 @@ export default { //log it in case we need to see it in tech support window.$gz.store.commit( "logItem", - `Error: open object url was not valid, missing type or invalid type ${op}` + `Error: open object url was not valid, missing type or invalid type ${JSON.stringify( + op + )}` ); return; //bail out, nothing to open here }