mirror of
https://github.com/callumalpass/tasknotes.git
synced 2026-07-22 12:50:26 +00:00
- Add comprehensive error messages for transform file loading failures - Include file path validation and existence checking - Add function validation warnings for missing transform functions - Provide step-by-step logging for transform execution - Add minimal transform examples for Discord and Slack Fixes silent failures that made debugging transform issues difficult. Addresses issue #719 where users couldn't identify why transform scripts weren't loading.
14 lines
No EOL
297 B
JSON
14 lines
No EOL
297 B
JSON
{
|
|
"task.created": {
|
|
"text": "📝 New task: ${data.task.title}",
|
|
"channel": "#tasks"
|
|
},
|
|
"task.completed": {
|
|
"text": "✅ Completed: ${data.task.title}",
|
|
"channel": "#tasks"
|
|
},
|
|
"default": {
|
|
"text": "TaskNotes: ${event} event triggered",
|
|
"channel": "#general"
|
|
}
|
|
} |