app: Implement group management

Except group creation
This commit is contained in:
Valentin Tolmer
2021-10-11 18:41:55 +02:00
committed by nitnelave
parent 42da86cf72
commit 8bd1dec180
12 changed files with 694 additions and 69 deletions
+2
View File
@@ -17,6 +17,8 @@ pub enum AppRoute {
UserDetails(String),
#[to = "/groups"]
ListGroups,
#[to = "/group/{group_id}"]
GroupDetails(i64),
#[to = "/"]
Index,
}