about summary refs log tree commit diff
path: root/src/db.rs
AgeCommit message (Collapse)AuthorFilesLines
2018-04-08 feat(db/models): Add handling of CreatePost messageVincent Ambo1-2/+23
2018-04-08 feat(db): Support CreateThread messageVincent Ambo1-0/+22
2018-04-08 refactor(db): Use ConverseError instead of unwrapping/expectingVincent Ambo1-10/+8
2018-04-08 refactor(db): Establish Post->Thread associationVincent Ambo1-2/+6
This makes it possible to query posts by thread via Diesel.
2018-04-08 feat(db): Add initial GetThread messageVincent Ambo1-0/+22
Adds a GetThread message that returns a thread by ID. This does not yet load posts.
2018-04-08 feat(db): Implement ListThreads messageVincent Ambo1-1/+23
Implements support for a message for listing threads. This does not have any pagination support yet.
2018-04-08 feat(db): Bootstrap DbExecutor actorVincent Ambo1-0/+13
Bootstraps an Actix actor carrying DB connections. This actor will be used to interact with converse's database.