aboutsummaryrefslogtreecommitdiff
path: root/zenserver/auth/authservice.h
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2023-05-02 10:01:47 +0200
committerGitHub <[email protected]>2023-05-02 10:01:47 +0200
commit075d17f8ada47e990fe94606c3d21df409223465 (patch)
treee50549b766a2f3c354798a54ff73404217b4c9af /zenserver/auth/authservice.h
parentfix: bundle shouldn't append content zip to zen (diff)
downloadzen-075d17f8ada47e990fe94606c3d21df409223465.tar.xz
zen-075d17f8ada47e990fe94606c3d21df409223465.zip
moved source directories into `/src` (#264)
* moved source directories into `/src` * updated bundle.lua for new `src` path * moved some docs, icon * removed old test trees
Diffstat (limited to 'zenserver/auth/authservice.h')
-rw-r--r--zenserver/auth/authservice.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/zenserver/auth/authservice.h b/zenserver/auth/authservice.h
deleted file mode 100644
index 64b86e21f..000000000
--- a/zenserver/auth/authservice.h
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright Epic Games, Inc. All Rights Reserved.
-
-#pragma once
-
-#include <zenhttp/httpserver.h>
-
-namespace zen {
-
-class AuthMgr;
-
-class HttpAuthService final : public zen::HttpService
-{
-public:
- HttpAuthService(AuthMgr& AuthMgr);
- virtual ~HttpAuthService();
-
- virtual const char* BaseUri() const override;
- virtual void HandleRequest(zen::HttpServerRequest& Request) override;
-
-private:
- AuthMgr& m_AuthMgr;
- HttpRequestRouter m_Router;
-};
-
-} // namespace zen