mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
Front page config and settings note
This commit is contained in:
parent
ef2f9ad12b
commit
b8cdc605a2
6 changed files with 32 additions and 7 deletions
|
@ -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"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue