Add download path transmission.markdown (#35474)

Co-authored-by: c0ffeeca7 <38767475+c0ffeeca7@users.noreply.github.com>
This commit is contained in:
DrBlokmeister 2024-12-17 17:49:05 +01:00 committed by GitHub
parent e841165f98
commit 1db3f2722b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -54,7 +54,7 @@ Possible events are:
- `transmission_started_torrent`
- `transmission_removed_torrent`
Inside of the event, there is the name of the torrent that is started or completed, as it is seen in the Transmission User Interface.
Inside the event, there is the name of the torrent that is started or completed and the path where the files are downloaded, as seen in the Transmission User Interface.
Example of an automation that notifies on successful download and removes the torrent from the client:
@ -69,7 +69,7 @@ Example of an automation that notifies on successful download and removes the to
- action: notify.telegram_notifier
data:
title: "Torrent completed!"
message: "{{trigger.event.data.name}}"
message: "{{trigger.event.data.name}} downloaded to {{trigger.event.data.download_path}}"
- action: transmission.remove_torrent
data:
entry_id: eeb52bc78e11d813a1e6bc68c8ff93c8
@ -90,6 +90,7 @@ Adds a new torrent to download. It can either be a URL (HTTP, HTTPS or FTP), mag
| ---------------------- | -------- | ------------------------ |
| `entry_id` | no | The integration entry_id |
| `torrent` | no | Torrent to download |
| `download_path` | yes | Absolute path to the download directory. If not specified, the Transmission's default directory will be used. |
### Action `remove_torrent`