organization.update does not error on missing permissions
The role check seems to work because the updates are not actually committed but the response indicates success when it should instead error because of missing permissions.
will return
which is expected and correct
will return
{data: null, error: null}
which is wrong. It should error instead.
It also takes the onSuccess
path in the fetch options.
This makes it difficult to properly manage feedback to the user
This is a slimmed down version of my custom access control & roles:
And this is a slimmed down version of the server config:
1 Reply
fixed by this commit.
@bekacru I wrote tests for this behavior since I was about to open a PR with the exact same changes you did.
Do you want me to commit them or are you fine with this not being tested specifically?
Edit: Here is the PR for the tests: https://github.com/better-auth/better-auth/pull/1748
GitHub
Add tests for organization updates and member lookup by vniehues · ...
Adds tests for this commit: e99931f