Hi,
I want to call a python function from my JavaScript code. This is my code,
rpc.query({
model: 'my_model',
method: 'my_method',
args: ['']
});
It works perfectly when I'm signed in. But the problem is, the function is not getting called when I'm not signed in. I do want to call the function from the website without signing in. Is there any solutions to achieve this ?
Thanks in advance.