mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-26 09:48:19 +03:00
parent
2075533468
commit
4b7ce87f57
1 changed files with 3 additions and 3 deletions
|
@ -292,9 +292,9 @@ void WebApplication::doProcessRequest()
|
||||||
{"query/propertiesFiles", {"torrents", "files", nullptr}},
|
{"query/propertiesFiles", {"torrents", "files", nullptr}},
|
||||||
{"query/getPieceHashes", {"torrents", "pieceHashes", nullptr}},
|
{"query/getPieceHashes", {"torrents", "pieceHashes", nullptr}},
|
||||||
{"query/getPieceStates", {"torrents", "pieceStates", nullptr}},
|
{"query/getPieceStates", {"torrents", "pieceStates", nullptr}},
|
||||||
{"command/resume", {"torrents", "resume", nullptr}},
|
{"command/resume", {"torrents", "resume", [this]() { m_params["hashes"] = m_params.take("hash"); }}},
|
||||||
{"command/pause", {"torrents", "pause", nullptr}},
|
{"command/pause", {"torrents", "pause", [this]() { m_params["hashes"] = m_params.take("hash"); }}},
|
||||||
{"command/recheck", {"torrents", "recheck", nullptr}},
|
{"command/recheck", {"torrents", "recheck", [this]() { m_params["hashes"] = m_params.take("hash"); }}},
|
||||||
{"command/resumeAll", {"torrents", "resume", [this]() { m_params["hashes"] = "all"; }}},
|
{"command/resumeAll", {"torrents", "resume", [this]() { m_params["hashes"] = "all"; }}},
|
||||||
{"command/pauseAll", {"torrents", "pause", [this]() { m_params["hashes"] = "all"; }}},
|
{"command/pauseAll", {"torrents", "pause", [this]() { m_params["hashes"] = "all"; }}},
|
||||||
{"command/rename", {"torrents", "rename", nullptr}},
|
{"command/rename", {"torrents", "rename", nullptr}},
|
||||||
|
|
Loading…
Reference in a new issue