diff options
| author | Dan Engelbrecht <[email protected]> | 2025-02-12 08:58:52 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-02-12 08:58:52 +0100 |
| commit | d39724eb644cab4ec5bbf19a703cb770b34e68c4 (patch) | |
| tree | e7263163d6bed8ba7f5cd05822f6993a26907b01 /src/zenhttp/include | |
| parent | Fix workspace shares reply array (#280) (diff) | |
| download | zen-d39724eb644cab4ec5bbf19a703cb770b34e68c4.tar.xz zen-d39724eb644cab4ec5bbf19a703cb770b34e68c4.zip | |
improved builds api interface in jupiter (#281)
* multipart upload/download iterface in jupiter
* review fixes
Diffstat (limited to 'src/zenhttp/include')
| -rw-r--r-- | src/zenhttp/include/zenhttp/httpclient.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/zenhttp/include/zenhttp/httpclient.h b/src/zenhttp/include/zenhttp/httpclient.h index 1cf77d794..a46b9fd83 100644 --- a/src/zenhttp/include/zenhttp/httpclient.h +++ b/src/zenhttp/include/zenhttp/httpclient.h @@ -60,9 +60,6 @@ struct HttpClientSettings class HttpClient { public: - struct Settings - { - }; HttpClient(std::string_view BaseUri, const HttpClientSettings& Connectionsettings = {}); ~HttpClient(); @@ -180,6 +177,7 @@ public: LoggerRef Logger() { return m_Log; } std::string_view GetBaseUri() const { return m_BaseUri; } bool Authenticate(); + std::string_view GetSessionId() const { return m_SessionId; } private: const std::optional<HttpClientAccessToken> GetAccessToken(); |