diff options
| author | Per Larsson <[email protected]> | 2022-01-25 18:36:41 +0100 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2022-01-25 18:36:41 +0100 |
| commit | 060c3ed4b49c6341d1a917ec728d26bda7e41494 (patch) | |
| tree | 054b147827833efd715a08f08f85d7d2e25c609c /zenserver/auth/authservice.h | |
| parent | Fixed missing object in project oplog response. (diff) | |
| download | zen-060c3ed4b49c6341d1a917ec728d26bda7e41494.tar.xz zen-060c3ed4b49c6341d1a917ec728d26bda7e41494.zip | |
Added auth manager with support for OIDC providers.
Diffstat (limited to 'zenserver/auth/authservice.h')
| -rw-r--r-- | zenserver/auth/authservice.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/zenserver/auth/authservice.h b/zenserver/auth/authservice.h index 30b2b5864..64b86e21f 100644 --- a/zenserver/auth/authservice.h +++ b/zenserver/auth/authservice.h @@ -6,16 +6,19 @@ namespace zen { +class AuthMgr; + class HttpAuthService final : public zen::HttpService { public: - HttpAuthService(); + 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; }; |