Skip to content

Commit

Permalink
Disable proactive notifications temporarily (#1284)
Browse files Browse the repository at this point in the history
  • Loading branch information
beastoin authored Nov 11, 2024
2 parents bc4c42e + 57d3fea commit ade2c01
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions backend/routers/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,11 @@ def get_plugin_capabilities():
{'title': 'External Integration', 'id': 'external_integration', 'triggers': [
{'title': 'Memory Creation', 'id': 'memory_creation'},
{'title': 'Transcript Processed', 'id': 'transcript_processed'},
]},
{'title': 'Proactive Notification', 'id': 'proactive_notification', 'scopes': [
{'title': 'User Name', 'id': 'user_name'},
{'title': 'User Facts', 'id': 'user_facts'}
]}
# {'title': 'Proactive Notification', 'id': 'proactive_notification', 'scopes': [
# {'title': 'User Name', 'id': 'user_name'},
# {'title': 'User Facts', 'id': 'user_facts'}
# ]}
]


Expand Down
3 changes: 1 addition & 2 deletions backend/routers/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,7 @@ def get_plugin_triggers():
# TODO: Include audio_bytes trigger when the code for it triggering through plugin is ready
return [
{'title': 'Memory Creation', 'id': 'memory_creation'},
{'title': 'Transcript Processed', 'id': 'transcript_processed'},
{'title': 'Proactive Notification', 'id': 'proactive_notification'}
{'title': 'Transcript Processed', 'id': 'transcript_processed'}
]


Expand Down

0 comments on commit ade2c01

Please sign in to comment.