Skip to content

Commit

Permalink
Revert "Disable proactive notifications temporarily" (#1294)
Browse files Browse the repository at this point in the history
Reverts #1284
  • Loading branch information
beastoin authored Nov 12, 2024
2 parents fe9aa82 + 0c560f4 commit d8e7c27
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 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: 2 additions & 1 deletion backend/routers/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ 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': 'Transcript Processed', 'id': 'transcript_processed'},
{'title': 'Proactive Notification', 'id': 'proactive_notification'}
]


Expand Down

0 comments on commit d8e7c27

Please sign in to comment.