adjust config

This commit is contained in:
WofWca 2023-03-23 14:55:03 +04:00
parent 724daee7da
commit f4890f00d7
1 changed files with 7 additions and 5 deletions

View File

@ -85,16 +85,16 @@ export const useConfigStore = defineStore('config', () => {
version: 'None whatsoever', version: 'None whatsoever',
frontendUrl: 'https://try.vikunja.io/', frontendUrl: 'https://try.vikunja.io/',
motd: '', motd: '',
linkSharingEnabled: true, linkSharingEnabled: false,
maxFileSize: '20MB', maxFileSize: '20MB',
registrationEnabled: true, registrationEnabled: false,
availableMigrators: [ availableMigrators: [
'vikunja-file', 'vikunja-file',
// These require the internet. // These require the internet.
// 'ticktick', // 'ticktick',
// 'todoist', // 'todoist',
], ],
taskAttachmentsEnabled: true, taskAttachmentsEnabled: false,
enabledBackgroundProviders: [ enabledBackgroundProviders: [
'upload', 'upload',
// 'unsplash', // 'unsplash',
@ -104,7 +104,8 @@ export const useConfigStore = defineStore('config', () => {
imprintUrl: '', imprintUrl: '',
privacyPolicyUrl: '', privacyPolicyUrl: '',
}, },
caldavEnabled: true, // TODO_OFFLINE implement
caldavEnabled: false,
auth: { auth: {
local: { local: {
enabled: true, enabled: true,
@ -117,7 +118,8 @@ export const useConfigStore = defineStore('config', () => {
}, },
emailRemindersEnabled: false, emailRemindersEnabled: false,
userDeletionEnabled: false, userDeletionEnabled: false,
taskCommentsEnabled: true, // TODO_OFFLINE implement comments
taskCommentsEnabled: false,
}) })
const success = true const success = true
return success return success