pinakes-server: expand test coverage for server features
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Ia09d2d3ad7f6613e21d20321e0877bc16a6a6964
This commit is contained in:
parent
4a2136439f
commit
7d8ec5ffc1
8 changed files with 853 additions and 10 deletions
|
|
@ -146,6 +146,14 @@ impl AppState {
|
|||
import_input: String::new(),
|
||||
status_message: None,
|
||||
should_quit: false,
|
||||
page_offset: 0,
|
||||
page_size: 50,
|
||||
total_media_count: 0,
|
||||
server_url: server_url.to_string(),
|
||||
// Multi-select
|
||||
selected_items: FxHashSet::default(),
|
||||
selection_mode: false,
|
||||
pending_batch_delete: false,
|
||||
duplicate_groups: Vec::new(),
|
||||
duplicates_selected: None,
|
||||
database_stats: None,
|
||||
|
|
@ -174,14 +182,6 @@ impl AppState {
|
|||
reading_progress: None,
|
||||
page_input: String::new(),
|
||||
entering_page: false,
|
||||
page_offset: 0,
|
||||
page_size: 50,
|
||||
total_media_count: 0,
|
||||
server_url: server_url.to_string(),
|
||||
// Multi-select
|
||||
selected_items: FxHashSet::default(),
|
||||
selection_mode: false,
|
||||
pending_batch_delete: false,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue