0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-11-21 21:48:21 -05:00

feat: add the safe search field in the Cookie struct (#210)

This commit is contained in:
neon_arch 2023-09-22 19:53:34 +03:00
parent 5c8cbee5d9
commit d2e482251e

View File

@ -26,4 +26,6 @@ pub struct Cookie<'a> {
pub colorscheme: &'a str,
/// It stores the user selected upstream search engines selected from the UI.
pub engines: Vec<&'a str>,
/// It stores the user selected safe search level from the UI.
pub safe_search_level: u8,
}