mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
implement restore action
This commit is contained in:
parent
4fee1c06a3
commit
ff82804e5b
2 changed files with 27 additions and 3 deletions
|
|
@ -248,7 +248,18 @@ impl Browser {
|
|||
}
|
||||
|
||||
pub fn restore(&self, app_id: &i64) {
|
||||
// @TODO
|
||||
match self.database.records(app_id) {
|
||||
Ok(records) => {
|
||||
for record in records {
|
||||
// Delegate restore action to childs
|
||||
// @TODO
|
||||
// self.header.restore(record.id);
|
||||
// self.main.restore(record.id);
|
||||
self.widget.restore(&record.id);
|
||||
}
|
||||
}
|
||||
Err(error) => panic!("{error}"), // @TODO
|
||||
}
|
||||
}
|
||||
|
||||
pub fn save(&self, app_id: &i64) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue