-
Notifications
You must be signed in to change notification settings - Fork 3
Description
It would be nice to have optional Pushover notifications triggered by two MAM helper automations — Auto-Buy VIP and Spend Excess Bonus Points.
Both of these helpers run on a schedule in the background, so there's not way of knowing at this time when they've fired without manually checking the UI or server logs. A push notification could provide confirmation that the action completed without requiring any manual checks.
Proposed Triggers:
Auto-Buy VIP — notify when a VIP top-up is successfully purchased or if it fails.
Spend Excess Bonus Points — notify when upload credit is purchased via the bonus point threshold or if the purchase fails.
Proposed Implementation:
An optional Pushover integration configured via the settings UI (or .env), using two values:
PUSHOVER_USER_KEYPUSHOVER_API_TOKEN
When both are set, a POST to the Pushover API could be made after each of the above actions:
POST https://api.pushover.net/1/messages.json
{
"token": "<PUSHOVER_API_TOKEN>",
"user": "<PUSHOVER_USER_KEY>",
"title": "MouseSearch",
"message": "Auto-Buy VIP: Successfully purchased VIP credit."
}
This is a low priority request, but would be nice to have. As always, thank you for the great project!