Client: added indexingStore

This commit is contained in:
Dmitry Sychugov 2024-04-26 15:54:07 +05:00
parent 00e4b09c7b
commit 06e124a422

View File

@ -79,6 +79,7 @@ import ImportAccountsStore from "./ImportAccountsStore";
import PluginStore from "./PluginStore";
import InfoPanelStore from "./InfoPanelStore";
import CampaignsStore from "./CampaignsStore";
import IndexingStore from "./IndexingStore";
const selectedFolderStore = new SelectedFolderStore(settingsStore);
@ -104,6 +105,7 @@ const setupStore = new SettingsSetupStore(
const confirmStore = new ConfirmStore();
const backupStore = new BackupStore();
const commonStore = new CommonStore(settingsStore);
const indexingStore = new IndexingStore();
const ssoStore = new SsoFormStore();
@ -231,6 +233,7 @@ const contextOptionsStore = new ContextOptionsStore(
infoPanelStore,
currentTariffStatusStore,
userStore,
indexingStore,
);
const hotkeyStore = new HotkeyStore(
@ -347,6 +350,7 @@ const store = {
pluginStore,
storageManagement,
campaignsStore,
indexingStore,
};
export default store;