You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
When I run curl -X POST -d '{"username": "foo", "password": "bar"}' https://myhomebase.foo/v1/accounts/login and with the following .homebase.yml configuration:
webapi:
domain: myhomebase.foousername: foopassword: bar
I keep receiving a HTTP 500 and seeing TypeError: Cannot read property 'username' of undefined.
I'm on homebase 2.0.8.
The text was updated successfully, but these errors were encountered:
Code should probably check if req.body is a non-null object so that it gives a better error message. Not sure why your request is failing, maybe the content-type header is wrong?
When I run
curl -X POST -d '{"username": "foo", "password": "bar"}' https://myhomebase.foo/v1/accounts/login
and with the following .homebase.yml configuration:I keep receiving a HTTP 500 and seeing
TypeError: Cannot read property 'username' of undefined
.I'm on homebase 2.0.8.
The text was updated successfully, but these errors were encountered: