Notifiarr / website

Issue tracker for Notifiarr.com
https://notifiarr.com
7 stars 0 forks source link

Qbit manage updates #95

Closed austinwbest closed 2 years ago

austinwbest commented 2 years ago

function name change: potential_rem_unregistered -> tag_tracker_error no changes to attributes but here is an example.

{
  "function": "tag_tracker_error",                   // Webhook Trigger keyword
  "title": str,                                      // Title of the Payload
  "body": str,                                       // Message of the Payload
  "torrent_name": str,                               // Torrent Name
  "torrent_category": str,                           // Torrent Category
  "torrent_tag": str,                                // Tag Added
  "torrent_status": str,                             // Torrent Tracker Status message
  "torrent_tracker": str,                            // Torrent Tracker URL
  "notifiarr_indexer": str,                          // Notifiarr React name/id for indexer
}

new function: untag_tracker_error

{
  "function": "untag_tracker_error",                 // Webhook Trigger keyword
  "title": str,                                      // Title of the Payload
  "body": str,                                       // Message of the Payload
  "torrent_name": str,                               // Torrent Name
  "torrent_category": str,                           // Torrent Category
  "torrent_tag": "issue",                            // Tag Added
  "torrent_tracker": str,                            // Torrent Tracker URL
  "notifiarr_indexer": str,                          // Notifiarr React name/id for indexer
}

changes for function: run_end change attribute: potential_unregistered -> torrents_tagged_tracker_error added attribute: torrents_untagged_tracker_error

{
  "function": "run_end",                    // Webhook Trigger keyword
...
  "torrents_tagged_tracker_error": int,     // Total Tracker Error Torrents Tagged
  "torrents_untagged_tracker_error": int,   // Total Tracker Error Torrents untagged
...
}