about summary refs log tree commit diff
path: root/src/state/persisted/schema.ts
diff options
context:
space:
mode:
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>