mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-27 17:56:25 +02:00
feat: implement sync notifications for Obsidian plugin
- Added functionality to create and update notifications during the Obsidian sync process. - Improved handling of sync completion and failure notifications. - Updated connector naming convention in various locations for consistency.
This commit is contained in:
parent
3b7f27cff9
commit
4a75603d4f
4 changed files with 134 additions and 8 deletions
|
|
@ -183,7 +183,7 @@ class TestConnectRace:
|
|||
async with AsyncSession(async_engine) as s:
|
||||
s.add(
|
||||
SearchSourceConnector(
|
||||
name="Obsidian \u2014 First",
|
||||
name="Obsidian - First",
|
||||
connector_type=SearchSourceConnectorType.OBSIDIAN_CONNECTOR,
|
||||
is_indexable=False,
|
||||
config={
|
||||
|
|
@ -202,7 +202,7 @@ class TestConnectRace:
|
|||
async with AsyncSession(async_engine) as s:
|
||||
s.add(
|
||||
SearchSourceConnector(
|
||||
name="Obsidian \u2014 Second",
|
||||
name="Obsidian - Second",
|
||||
connector_type=SearchSourceConnectorType.OBSIDIAN_CONNECTOR,
|
||||
is_indexable=False,
|
||||
config={
|
||||
|
|
@ -228,7 +228,7 @@ class TestConnectRace:
|
|||
async with AsyncSession(async_engine) as s:
|
||||
s.add(
|
||||
SearchSourceConnector(
|
||||
name="Obsidian \u2014 Desktop",
|
||||
name="Obsidian - Desktop",
|
||||
connector_type=SearchSourceConnectorType.OBSIDIAN_CONNECTOR,
|
||||
is_indexable=False,
|
||||
config={
|
||||
|
|
@ -247,7 +247,7 @@ class TestConnectRace:
|
|||
async with AsyncSession(async_engine) as s:
|
||||
s.add(
|
||||
SearchSourceConnector(
|
||||
name="Obsidian \u2014 Mobile",
|
||||
name="Obsidian - Mobile",
|
||||
connector_type=SearchSourceConnectorType.OBSIDIAN_CONNECTOR,
|
||||
is_indexable=False,
|
||||
config={
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue