Add a new server controller for opening comics from reading lists

This commit is contained in:
Luis Ángel San Martín
2021-05-25 21:45:07 +02:00
parent 6cf11f47e1
commit 0333c9f050
3 changed files with 123 additions and 2 deletions

View File

@ -0,0 +1,18 @@
#ifndef COMICCONTROLLERINREADINGLISTV2_H
#define COMICCONTROLLERINREADINGLISTV2_H
#include "httprequest.h"
#include "httpresponse.h"
#include "httprequesthandler.h"
class ComicControllerInReadingListV2 : public stefanfrings::HttpRequestHandler
{
Q_OBJECT
Q_DISABLE_COPY(ComicControllerInReadingListV2)
public:
ComicControllerInReadingListV2();
void service(stefanfrings::HttpRequest &request, stefanfrings::HttpResponse &response) override;
};
#endif // COMICCONTROLLERINREADINGLISTV2_H