mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 02:54:46 -04:00
YACReaderLibrary Server: Add webui status page
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
#ifndef STATUSPAGE_CONTROLLER
|
||||
#define STATUSPAGE_CONTROLLER
|
||||
|
||||
#include "httprequest.h"
|
||||
#include "httpresponse.h"
|
||||
#include "httprequesthandler.h"
|
||||
|
||||
class StatusPageController : public stefanfrings::HttpRequestHandler
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY(StatusPageController);
|
||||
|
||||
public:
|
||||
StatusPageController();
|
||||
|
||||
void service(stefanfrings::HttpRequest &request, stefanfrings::HttpResponse &response) override;
|
||||
};
|
||||
|
||||
#endif // STATUSPAGE_CONTROLLER
|
Reference in New Issue
Block a user