Front page config and settings note

This commit is contained in:
spikecodes 2021-01-08 20:55:40 -08:00
parent ef2f9ad12b
commit b8cdc605a2
6 changed files with 32 additions and 7 deletions

View file

@ -51,6 +51,7 @@ pub struct Comment {
pub replies: Vec<Comment>,
}
#[derive(Default)]
// User struct containing metadata about user
pub struct User {
pub name: String,
@ -93,6 +94,7 @@ pub struct ErrorTemplate {
}
pub struct Preferences {
pub front_page: String,
pub layout: String,
pub hide_nsfw: String,
pub comment_sort: String,
@ -105,6 +107,7 @@ pub struct Preferences {
// Build preferences from cookies
pub fn prefs(req: HttpRequest) -> Preferences {
Preferences {
front_page: cookie(&req, "front_page"),
layout: cookie(&req, "layout"),
hide_nsfw: cookie(&req, "hide_nsfw"),
comment_sort: cookie(&req, "comment_sort"),