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) {