We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I create drinks with
items_client.items_post(name, cost)
cost does not seem to have effect. I specify 100 (1 Euro in cents) and it results in 0 in the backend.
100
0
Can you have a look?
The text was updated successfully, but these errors were encountered:
This is not a bug anymore. Its just not-so-nice behaviour.
I posted a float(100) and not a int(100) and the API silently accepted my request with 200 but did not change the value.
So if you like, you may want to throw an error message if the type of the input is not correct.
Sorry, something went wrong.
Hm, right, the API is specified to accept only int, but it is not enforced ...
No branches or pull requests
Hi,
I create drinks with
cost does not seem to have effect. I specify
100
(1 Euro in cents) and it results in0
in the backend.Can you have a look?
The text was updated successfully, but these errors were encountered: