aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/LocalApi.js
diff options
context:
space:
mode:
authorLibravatar Danny Qiu <dqiu55@gmail.com>2017-12-29 01:31:52 -0500
committerLibravatar Danny Qiu <dqiu55@gmail.com>2017-12-29 01:31:52 -0500
commit9e2a998cccee808d8f2f16d4dc6f45d3c069ec32 (patch)
tree8e87439eec28d47d4f4c7312d0f0da45e38de87b /src/api/LocalApi.js
parentLog event on second instnace of Franz (diff)
downloadferdium-app-9e2a998cccee808d8f2f16d4dc6f45d3c069ec32.tar.gz
ferdium-app-9e2a998cccee808d8f2f16d4dc6f45d3c069ec32.tar.zst
ferdium-app-9e2a998cccee808d8f2f16d4dc6f45d3c069ec32.zip
Add button to clear service cache
Diffstat (limited to 'src/api/LocalApi.js')
-rw-r--r--src/api/LocalApi.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/api/LocalApi.js b/src/api/LocalApi.js
index 6f2b049d6..d52e9cd10 100644
--- a/src/api/LocalApi.js
+++ b/src/api/LocalApi.js
@@ -15,4 +15,8 @@ export default class LocalApi {
15 removeKey(key) { 15 removeKey(key) {
16 return this.local.removeKey(key); 16 return this.local.removeKey(key);
17 } 17 }
18
19 clearAppCache() {
20 return this.local.clearAppCache();
21 }
18} 22}