Update dependencies, add translation endpoint, and display a user message when logged in

This commit is contained in:
Greg Burri 2025-05-05 01:59:30 +02:00
parent 6b043620b8
commit 348b0f24e9
19 changed files with 170 additions and 34 deletions

10
common/src/toast.rs Normal file
View file

@ -0,0 +1,10 @@
use strum::FromRepr;
#[derive(FromRepr)]
pub enum Level {
Success,
Error,
Info,
Warning,
Unknown,
}