Merge pull request #8584 from Piccirello/new-search-api-2

WebUI search API. Closes #2495
This commit is contained in:
Vladimir Golovnev 2018-10-24 13:13:16 +03:00 committed by GitHub
commit 7e36cc746f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 468 additions and 19 deletions

View file

@ -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));