about summary refs log tree commit diff
path: root/src/state/persisted/schema.ts
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-12-09 13:43:16 -0600
committerGitHub <noreply@github.com>2024-12-09 13:43:16 -0600
commitbc4b4a3cfec482672ee8bc8cebd0351f29f0a3c8 (patch)
tree470f5b9bc0857b5c5e249bc447b55fc102c7edbc /src/state/persisted/schema.ts
parent63c0c7e6211e35f7388dfbc5c5509e727dd4203e (diff)
downloadvoidsky-bc4b4a3cfec482672ee8bc8cebd0351f29f0a3c8.tar.zst
Add `isSelfHosted` to `SessionAccount` (#7028)
* Add isSelfHosted to SessionAccount

* Update snaps
Diffstat (limited to 'src/state/persisted/schema.ts')
-rw-r--r--src/state/persisted/schema.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/state/persisted/schema.ts b/src/state/persisted/schema.ts
index 804017949..f70d77463 100644
--- a/src/state/persisted/schema.ts
+++ b/src/state/persisted/schema.ts
@@ -28,6 +28,7 @@ const accountSchema = z.object({
    */
   status: z.string().optional(),
   pdsUrl: z.string().optional(),
+  isSelfHosted: z.boolean().optional(),
 })
 export type PersistedAccount = z.infer<typeof accountSchema>