mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 20:44:34 +00:00
fix where
of our settings, should fix migrations
This commit is contained in:
parent
be76469d4f
commit
f9c61b452e
1 changed files with 12 additions and 12 deletions
|
@ -474,7 +474,7 @@ export const store = markRaw(new Pizzax('base', {
|
||||||
|
|
||||||
//#region Sharkey
|
//#region Sharkey
|
||||||
autoloadConversation: {
|
autoloadConversation: {
|
||||||
where: 'device',
|
where: 'account',
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
clickToOpen: {
|
clickToOpen: {
|
||||||
|
@ -482,15 +482,15 @@ export const store = markRaw(new Pizzax('base', {
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
collapseFiles: {
|
collapseFiles: {
|
||||||
where: 'device',
|
where: 'account',
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
collapseNotesRepliedTo: {
|
collapseNotesRepliedTo: {
|
||||||
where: 'device',
|
where: 'account',
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
disableCatSpeak: {
|
disableCatSpeak: {
|
||||||
where: 'device',
|
where: 'account',
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
enableFaviconNotificationDot: {
|
enableFaviconNotificationDot: {
|
||||||
|
@ -502,11 +502,11 @@ export const store = markRaw(new Pizzax('base', {
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
followingFeed: {
|
followingFeed: {
|
||||||
where: 'device',
|
where: 'account',
|
||||||
default: defaultFollowingFeedState as Partial<FollowingFeedState>,
|
default: defaultFollowingFeedState as Partial<FollowingFeedState>,
|
||||||
},
|
},
|
||||||
like: {
|
like: {
|
||||||
where: 'device',
|
where: 'account',
|
||||||
default: null as string | null,
|
default: null as string | null,
|
||||||
},
|
},
|
||||||
noteDesign: {
|
noteDesign: {
|
||||||
|
@ -526,7 +526,7 @@ export const store = markRaw(new Pizzax('base', {
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
searchEngine: {
|
searchEngine: {
|
||||||
where: 'device',
|
where: 'account',
|
||||||
default: Object.keys(searchEngineMap)[0],
|
default: Object.keys(searchEngineMap)[0],
|
||||||
},
|
},
|
||||||
showTickerOnReplies: {
|
showTickerOnReplies: {
|
||||||
|
@ -534,23 +534,23 @@ export const store = markRaw(new Pizzax('base', {
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
showVisibilitySelectorOnBoost: {
|
showVisibilitySelectorOnBoost: {
|
||||||
where: 'device',
|
where: 'account',
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
trustedDomains: {
|
trustedDomains: {
|
||||||
where: 'device',
|
where: 'account',
|
||||||
default: [] as string[],
|
default: [] as string[],
|
||||||
},
|
},
|
||||||
uncollapseCW: {
|
uncollapseCW: {
|
||||||
where: 'device',
|
where: 'account',
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
visibilityOnBoost: {
|
visibilityOnBoost: {
|
||||||
where: 'device',
|
where: 'account',
|
||||||
default: 'public' as 'public' | 'home' | 'followers',
|
default: 'public' as 'public' | 'home' | 'followers',
|
||||||
},
|
},
|
||||||
warnExternalUrl: {
|
warnExternalUrl: {
|
||||||
where: 'device',
|
where: 'account',
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
warnMissingAltText: {
|
warnMissingAltText: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue