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:
parent
1dd56d5377
commit
c5eccff8d0
1 changed files with 6 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue