From b053ff7f24cb1d63ce20671c6e36a2e78b9bb59e Mon Sep 17 00:00:00 2001 From: Tim Glasgow Date: Sat, 30 Jul 2022 18:42:01 -0500 Subject: [PATCH] return true for testing --- squarenotsquare/src/realm/dbAPI.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/squarenotsquare/src/realm/dbAPI.js b/squarenotsquare/src/realm/dbAPI.js index 24d77d8..7be9996 100644 --- a/squarenotsquare/src/realm/dbAPI.js +++ b/squarenotsquare/src/realm/dbAPI.js @@ -6,10 +6,12 @@ export function getAllSystemValues() { export function createSystemValue(key, value) { systemRepo.createSystemValue(key, value); + return true; } export function deleteSystemValue(key) { systemRepo.deleteSystemValue(key); + return true; } export function getSystemValue(key) {