ezidam: settings: branding: show updated_at

This commit is contained in:
Philippe Loctaux 2023-03-31 00:46:09 +02:00
parent 14bff68cbf
commit c8700cfdc8
4 changed files with 10 additions and 0 deletions

View file

@ -26,4 +26,10 @@ impl Settings {
pub fn url(&self) -> Option<&str> {
self.url.as_deref()
}
pub fn created_at(&self) -> DateTime<Utc> {
self.created_at
}
pub fn updated_at(&self) -> DateTime<Utc> {
self.updated_at
}
}