after following the webinar "building an app with user registration." I get this message.
Any ideas on what I should do?
Hello Jeff,
Does it affect the functionality of your app?
Can you update the screenshot -- it doesn't show the line with error?
Hi Jeff,
Please share the application with a href="mailto:support@appery.io" rel="nofollow"support@appery.io/a and tell us how to reproduce the error.
Hello! On My_Bucket_List page in creat_mylis service in mapping to request parameter acl there is an incorrect code:
prevar acl = <;
acl{value}= { "read": true,"write": true };
return acl;/pre
Please try the following one instead
prevar acl = {};
acl[value]= { "read": true,"write": true };
return acl;/pre
Hello,
There is syntax error on My_Bucket_List page in creat_mylis service in mapping to request parameter acl. You should use
pre
var acl = {};
/pre
instead of
pre
ar acl = {};
/pre