cleanup status variable

This commit is contained in:
2024-08-25 22:18:31 +02:00
parent c3794fa2b6
commit a0a99cd3cc
3 changed files with 6 additions and 5 deletions

View File

@@ -13,12 +13,12 @@ pub struct Status {
pub max_expiration: u32,
pub allow_advanced: bool,
pub allow_files: bool,
pub theme_new_note_notice: bool,
// Theme
pub theme_image: String,
pub theme_text: String,
pub theme_page_title: String,
pub theme_favicon: String,
pub theme_new_note_notice: bool,
}
pub async fn get_status() -> (StatusCode, Json<Status>) {