This commit is contained in:
Scott E. Graves 2024-08-02 09:32:26 -05:00
parent b399ff3291
commit 9f76f20ea8
6 changed files with 7 additions and 8 deletions

View File

@ -31,7 +31,7 @@
#include "drives/winfsp/remotewinfsp/i_remote_instance.hpp"
#include "types/remote.hpp"
#include "types/repertory.hpp"
#include "utils/Base64.hpp"
#include "utils/base64.hpp"
#include "utils/path_utils.hpp"
#define REPERTORY_DIRECTORY_PAGE_SIZE std::size_t(100U)

View File

@ -38,7 +38,7 @@
#include "rpc/server/full_server.hpp"
#include "types/repertory.hpp"
#include "types/startup_exception.hpp"
#include "utils/Base64.hpp"
#include "utils/base64.hpp"
#include "utils/error_utils.hpp"
#include "utils/file_utils.hpp"
#include "utils/polling.hpp"

View File

@ -35,7 +35,7 @@
#include "events/events.hpp"
#include "types/remote.hpp"
#include "types/repertory.hpp"
#include "utils/Base64.hpp"
#include "utils/base64.hpp"
#include "utils/error_utils.hpp"
#include "utils/file_utils.hpp"
#include "utils/path_utils.hpp"

View File

@ -22,7 +22,7 @@
#include "rpc/client/client.hpp"
#include "types/repertory.hpp"
#include "utils/Base64.hpp"
#include "utils/base64.hpp"
#include "utils/utils.hpp"
namespace repertory {
@ -195,9 +195,8 @@ auto client::pinned_status(const std::string &api_path) -> rpc_response {
return rpc_response{rpc_response_type::success, json::parse(resp->body)};
}
auto client::set_config_value_by_name(const std::string &name,
const std::string &value)
-> rpc_response {
auto client::set_config_value_by_name(
const std::string &name, const std::string &value) -> rpc_response {
const auto base_url =
"http://" + host_info_.host + ":" + std::to_string(host_info_.port);

View File

@ -22,7 +22,7 @@
#include "rpc/server/server.hpp"
#include "app_config.hpp"
#include "utils/Base64.hpp"
#include "utils/base64.hpp"
#include "utils/error_utils.hpp"
namespace repertory {