mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00

* Add support for the 'Test' button to work * Make Porla show up in filter actions select * Add an empty Porla action * Make Porla action find download client * Make implementation actually add torrent to Porla * Fix qBittorrent import * Finish up Porla action * Check length on commitish before slicing * Move Porla to the other DL clients * Add Porla to type name map * Move Porla to beneath the other download clients
20 lines
447 B
Go
20 lines
447 B
Go
package porla
|
|
|
|
type SysVersions struct {
|
|
Porla SysVersionsPorla `json:"porla"`
|
|
}
|
|
|
|
type SysVersionsPorla struct {
|
|
Commitish string `json:"commitish"`
|
|
Version string `json:"version"`
|
|
}
|
|
|
|
type TorrentsAddReq struct {
|
|
DownloadLimit int64 `json:"download_limit,omitempty"`
|
|
SavePath string `json:"save_path,omitempty"`
|
|
Ti string `json:"ti"`
|
|
UploadLimit int64 `json:"upload_limit,omitempty"`
|
|
}
|
|
|
|
type TorrentsAddRes struct {
|
|
}
|