Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 403 Forbidden to STANDARD_ERRORS
This isn't actually an error the Eve Framework will ever raise. As far as I could tell. However, separation between authentication and authorization is a must even for less complex applicatons. 403 is the most adequate response a server can provide to client whose authentication was accepted, yet for some reason or another the server will not comply with the request. The Eve Framework documentation suggests the usage of 403 in, at least two instances: * `abort(403)` in: https://docs.python-eve.org/en/stable/features.html#database-event-hooks * The actual documentation for the `STANDARD_ERRORS` config variable, describes 403 as a supported code, in: https://docs.python-eve.org/en/stable/config.html#global-configuration
- Loading branch information