about summary refs log tree commit diff
path: root/src/errors.rs
AgeCommit message (Collapse)AuthorFilesLines
2018-04-14 feat: License project under GPLv3Vincent Ambo1-0/+16
2018-04-08 feat(handlers): Use cookie session backend to store author infoVincent Ambo1-2/+12
2018-04-08 feat(oidc): Implement initial OIDC actorVincent Ambo1-0/+9
Implements an actor that can perform OAuth2 logins (not really OIDC-compliant yet because Rust doesn't have an easy to use JWT library that supports JWKS, and I don't have time for that right now). Currently this hardcodes some Office365-specific stuff.
2018-04-08 feat(errors): Introduce error module with custom error typeVincent Ambo1-0/+75
Introduces an error type using the failure crate. This type has foreign error links established to various errors that can occur within Converse.