mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-30 16:34:16 +00:00
parent
bdc788c824
commit
6d619e9491
@ -856,3 +856,18 @@ void TorrentsController::removeCategoriesAction()
|
|||||||
for (const QString &category : categories)
|
for (const QString &category : categories)
|
||||||
BitTorrent::Session::instance()->removeCategory(category);
|
BitTorrent::Session::instance()->removeCategory(category);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void TorrentsController::categoriesAction()
|
||||||
|
{
|
||||||
|
QJsonObject categories;
|
||||||
|
const auto categoriesList = BitTorrent::Session::instance()->categories();
|
||||||
|
for (auto it = categoriesList.cbegin(); it != categoriesList.cend(); ++it) {
|
||||||
|
const auto &key = it.key();
|
||||||
|
categories[key] = QJsonObject {
|
||||||
|
{"name", key},
|
||||||
|
{"savePath", it.value()}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
setResult(categories);
|
||||||
|
}
|
||||||
|
@ -55,6 +55,7 @@ private slots:
|
|||||||
void createCategoryAction();
|
void createCategoryAction();
|
||||||
void editCategoryAction();
|
void editCategoryAction();
|
||||||
void removeCategoriesAction();
|
void removeCategoriesAction();
|
||||||
|
void categoriesAction();
|
||||||
void addAction();
|
void addAction();
|
||||||
void deleteAction();
|
void deleteAction();
|
||||||
void addTrackersAction();
|
void addTrackersAction();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user