Online Search (#576)
* Very basic online search for gmail. * Server side of handling offline search and listing part in listing page. * Default search mode implementation and search UI improvements. * Online search for Outlook. * Very basic online search for gmail. * Server side of handling offline search and listing part in listing page. * Default search mode implementation and search UI improvements. * Online search for Outlook. * Online search for imap without downloading the messages yet. TODO * Completing imap search.
This commit is contained in:
@@ -235,6 +235,12 @@ public class PreferencesService : ObservableObject, IPreferencesService
|
||||
set => SaveProperty(propertyName: nameof(DiagnosticId), value);
|
||||
}
|
||||
|
||||
public SearchMode DefaultSearchMode
|
||||
{
|
||||
get => _configurationService.Get(nameof(DefaultSearchMode), SearchMode.Local);
|
||||
set => SaveProperty(propertyName: nameof(DefaultSearchMode), value);
|
||||
}
|
||||
|
||||
public DayOfWeek FirstDayOfWeek
|
||||
{
|
||||
get => _configurationService.Get(nameof(FirstDayOfWeek), DayOfWeek.Monday);
|
||||
|
||||
Reference in New Issue
Block a user