diff --git a/src/user/mod.rs b/src/user/mod.rs index 56941f6..e68f3f7 100644 --- a/src/user/mod.rs +++ b/src/user/mod.rs @@ -20,10 +20,10 @@ pub struct User { pub struct ServiceUser { pub id: uuid::Uuid, // TODO: Remove the omitempty tags at a later point - pub username: String, - pub passphrase: String, - pub created: Option, + pub username: String, + pub passphrase: String, + pub created: Option, // When serializing to json, if empty do not populate #[serde(with = "time::serde::rfc3339::option")] - pub last_login: Option, + pub last_login: Option, }