about summary refs log tree commit diff
path: root/src/render.rs
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2018-05-25T16·44+0200
committerVincent Ambo <github@tazj.in>2018-05-27T13·00+0200
commit871093a973d265026581c53b760f9f021b192f54 (patch)
tree4e43455a5831eebf8cb031f5c5249db9bb8108ca /src/render.rs
parent468af132e89a8cb80392b7d6e12f1e53b849c0c1 (diff)
feat(db): Update views with thread-closed field
Diffstat (limited to 'src/render.rs')
-rw-r--r--src/render.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/render.rs b/src/render.rs
index 223a3bd452..c209384b71 100644
--- a/src/render.rs
+++ b/src/render.rs
@@ -58,6 +58,7 @@ struct IndexThread {
     id: i32,
     title: String,
     sticky: bool,
+    closed: bool,
     posted: FormattedDate,
     author_name: String,
     post_author: String,
@@ -79,6 +80,7 @@ impl Handler<IndexPage> for Renderer {
                 id: thread.thread_id,
                 title: thread.title, // escape_html(&thread.title),
                 sticky: thread.sticky,
+                closed: thread.closed,
                 posted: FormattedDate(thread.posted),
                 author_name: thread.thread_author,
                 post_author: thread.post_author,
@@ -119,6 +121,7 @@ struct RenderablePost {
 struct RenderableThreadPage {
     id: i32,
     title: String,
+    closed: bool,
     posts: Vec<RenderablePost>,
 }
 
@@ -145,6 +148,7 @@ fn prepare_thread(comrak: &ComrakOptions, page: ThreadPage) -> RenderableThreadP
 
     RenderableThreadPage {
         posts,
+        closed: page.thread.closed,
         id: page.thread.id,
         title: page.thread.title,
     }