about summary refs log tree commit diff
path: root/src/storage/schema.ts
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-02-07 11:18:51 +0000
committerGitHub <noreply@github.com>2025-02-07 11:18:51 +0000
commit4b706c9519c548d53529876bdf815836ec71bdd4 (patch)
tree96485dcb1de8c7344287bebb890cd5832f527dfa /src/storage/schema.ts
parentb12d39b4cff0fe1b91fb16496c3fea1ed22de5cf (diff)
downloadvoidsky-4b706c9519c548d53529876bdf815836ec71bdd4.tar.zst
Per-user search history (#7588)
* per-user search history

* move to mmkv with cool new hook

* revert accidental changes

This reverts commit 27c89fa645eff0acb7a8fd852203ff1ea3725c69.

* restore limits
Diffstat (limited to 'src/storage/schema.ts')
-rw-r--r--src/storage/schema.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/storage/schema.ts b/src/storage/schema.ts
index d8b9874e4..667b43208 100644
--- a/src/storage/schema.ts
+++ b/src/storage/schema.ts
@@ -13,4 +13,5 @@ export type Device = {
 
 export type Account = {
   searchTermHistory?: string[]
+  searchAccountHistory?: string[]
 }