1
0
Fork 1
mirror of https://example.com synced 2024-11-22 12:36:40 +09:00

fix: add private visibility in defaultStore

This commit is contained in:
naskya 2023-10-16 03:00:55 +09:00
parent 1dd56d5377
commit c5eccff8d0
Signed by: naskya
GPG key ID: 164DFF24E2D40139

View file

@ -122,7 +122,12 @@ export const defaultStore = markRaw(
},
visibility: {
where: "deviceAccount",
default: "public" as "public" | "home" | "followers" | "specified",
default: "public" as
| "public"
| "home"
| "followers"
| "specified"
| "private",
},
localOnly: {
where: "deviceAccount",