diff options
author | Eric Bailey <git@esb.lol> | 2024-12-09 13:43:16 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-09 13:43:16 -0600 |
commit | bc4b4a3cfec482672ee8bc8cebd0351f29f0a3c8 (patch) | |
tree | 470f5b9bc0857b5c5e249bc447b55fc102c7edbc /src/state/persisted/schema.ts | |
parent | 63c0c7e6211e35f7388dfbc5c5509e727dd4203e (diff) | |
download | voidsky-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.ts | 1 |
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> |