Add todos

This commit is contained in:
Joscha 2022-08-30 17:04:03 +02:00
parent 03ddc5eb9b
commit 5eeabea2de
8 changed files with 45 additions and 0 deletions

View file

@ -8,6 +8,7 @@ use crate::macros::ok_or_return;
#[derive(Debug, Clone, Default, Deserialize)]
pub struct EuphRoom {
// TODO Mark favourite rooms via printable ascii characters
#[serde(default)]
pub autojoin: bool,
pub username: Option<String>,
@ -28,6 +29,7 @@ pub struct Config {
pub ephemeral: bool,
#[serde(default)]
pub offline: bool,
// TODO Invoke external notification command?
pub euph: Euph,
}