mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 01:03:08 -07:00
Merge pull request #8584 from Piccirello/new-search-api-2
WebUI search API. Closes #2495
This commit is contained in:
commit
7e36cc746f
9 changed files with 468 additions and 19 deletions
|
@ -59,6 +59,7 @@
|
|||
#include "api/authcontroller.h"
|
||||
#include "api/logcontroller.h"
|
||||
#include "api/rsscontroller.h"
|
||||
#include "api/searchcontroller.h"
|
||||
#include "api/synccontroller.h"
|
||||
#include "api/torrentscontroller.h"
|
||||
#include "api/transfercontroller.h"
|
||||
|
@ -121,6 +122,7 @@ WebApplication::WebApplication(QObject *parent)
|
|||
registerAPIController(QLatin1String("auth"), new AuthController(this, this));
|
||||
registerAPIController(QLatin1String("log"), new LogController(this, this));
|
||||
registerAPIController(QLatin1String("rss"), new RSSController(this, this));
|
||||
registerAPIController(QLatin1String("search"), new SearchController(this, this));
|
||||
registerAPIController(QLatin1String("sync"), new SyncController(this, this));
|
||||
registerAPIController(QLatin1String("torrents"), new TorrentsController(this, this));
|
||||
registerAPIController(QLatin1String("transfer"), new TransferController(this, this));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue