This commit is contained in:
Ralph Wessel
2024-09-19 22:13:48 +01:00
parent 9f35e86372
commit bd200492fd
2 changed files with 2 additions and 2 deletions
@@ -30,6 +30,6 @@ GetConfig::GetConfig() : BridgeMethod{"GetConfig", [&]() {
--------------------------------------------------------------------*/
std::unique_ptr<Cargo> 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<WrappedValue>(config);
} //GetConfig::run
@@ -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