From bd200492fdac13b4f279ade91d500f1c0f671b73 Mon Sep 17 00:00:00 2001 From: Ralph Wessel Date: Thu, 19 Sep 2024 22:13:48 +0100 Subject: [PATCH] Docs --- .../Connector/Interface/Browser/Bridge/Config/GetConfig.cpp | 2 +- .../Connector/Interface/Browser/Bridge/Config/UpdateConfig.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SpeckleConnector/Connector/Interface/Browser/Bridge/Config/GetConfig.cpp b/SpeckleConnector/Connector/Interface/Browser/Bridge/Config/GetConfig.cpp index c486370..80b7b7b 100644 --- a/SpeckleConnector/Connector/Interface/Browser/Bridge/Config/GetConfig.cpp +++ b/SpeckleConnector/Connector/Interface/Browser/Bridge/Config/GetConfig.cpp @@ -30,6 +30,6 @@ GetConfig::GetConfig() : BridgeMethod{"GetConfig", [&]() { --------------------------------------------------------------------*/ std::unique_ptr GetConfig::run() const { ConnectorConfig config; - ///TODO: Get the accounts here - returning an empty array for testing only + ///TODO: Get the data from a local SQLite database return std::make_unique(config); } //GetConfig::run diff --git a/SpeckleConnector/Connector/Interface/Browser/Bridge/Config/UpdateConfig.cpp b/SpeckleConnector/Connector/Interface/Browser/Bridge/Config/UpdateConfig.cpp index 515f127..beb0674 100644 --- a/SpeckleConnector/Connector/Interface/Browser/Bridge/Config/UpdateConfig.cpp +++ b/SpeckleConnector/Connector/Interface/Browser/Bridge/Config/UpdateConfig.cpp @@ -21,5 +21,5 @@ UpdateConfig::UpdateConfig() : BridgeMethod{"UpdateConfig", [&](const UpdateArgs config: The new settings --------------------------------------------------------------------*/ void UpdateConfig::run(const ConnectorConfig& config) const { - ///TODO: Store the active configuration settings here + ///TODO: Store the active configuration settings in a local SQLite database } //UpdateConfig::run