Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-04-08 | feat(db/models): Add handling of CreatePost message | Vincent Ambo | 1 | -2/+23 | |
2018-04-08 | feat(db): Support CreateThread message | Vincent Ambo | 1 | -0/+22 | |
2018-04-08 | refactor(db): Use ConverseError instead of unwrapping/expecting | Vincent Ambo | 1 | -10/+8 | |
2018-04-08 | refactor(db): Establish Post->Thread association | Vincent Ambo | 1 | -2/+6 | |
This makes it possible to query posts by thread via Diesel. | |||||
2018-04-08 | feat(db): Add initial GetThread message | Vincent Ambo | 1 | -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 message | Vincent Ambo | 1 | -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 actor | Vincent Ambo | 1 | -0/+13 | |
Bootstraps an Actix actor carrying DB connections. This actor will be used to interact with converse's database. |