Age | Commit message (Collapse) | Author | Files | Lines |
|
... until pagination is in place.
|
|
Schedules refreshes of the database view used for search at one-minute
intervals.
|
|
Adds support for executing full-text search across a forum instance by
sending the `SearchPosts` message with a search query to the DB actor.
The struct used for results is mapped manually to the expected query
result as the query is embedded via raw SQL.
|
|
This implements the classic thread ordering expected by most forum
users (i.e. the thread with the most recent post is at the top).
|
|
|
|
This is a simplification over the previous approach. The OP of a
thread is just a normal post like any other in this model, which
allows some code simplifications (and future query convenience).
|
|
Technically the last post date should matter more here, but we'll get
there.
|
|
|
|
|
|
|
|
This makes it possible to query posts by thread via Diesel.
|
|
Adds a GetThread message that returns a thread by ID. This does not
yet load posts.
|
|
Implements support for a message for listing threads. This does not
have any pagination support yet.
|
|
Bootstraps an Actix actor carrying DB connections. This actor will be
used to interact with converse's database.
|