Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2022-05-06 22:11:23 +0300
committerdartcafe <github@dartcafe.de>2022-05-06 22:11:23 +0300
commitce44de6e28a12db7181d04792f4838da0192976f (patch)
treee1137d29540bd8f27651a98d3b651c46a09b7f75 /src/js/views
parent0cc7e62167a31bde3577e107780cd963eed7ed3e (diff)
added user setting for search tolerance
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/views')
-rw-r--r--src/js/views/UserSettingsPage.vue5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/js/views/UserSettingsPage.vue b/src/js/views/UserSettingsPage.vue
index d271b006..87013991 100644
--- a/src/js/views/UserSettingsPage.vue
+++ b/src/js/views/UserSettingsPage.vue
@@ -22,6 +22,10 @@
<template>
<div class="polls_user_settings">
+ <SettingsSection :title="t('polls', 'Calendar check')"
+ :description="t('polls', 'Search for conflicting calendar entries')">
+ <CalendarSettings />
+ </SettingsSection>
<SettingsSection :title="t('polls', 'Polls user settings')"
:description="t('polls', 'Set your personal preferences for the polls app')">
<FeatureSettings />
@@ -47,6 +51,7 @@ export default {
components: {
SettingsSection,
+ CalendarSettings: () => import('../components/Settings/UserSettings/CalendarSettings.vue'),
FeatureSettings: () => import('../components/Settings/UserSettings/FeatureSettings.vue'),
StyleSettings: () => import('../components/Settings/UserSettings/StyleSettings.vue'),
PerformanceSettings: () => import('../components/Settings/UserSettings/PerformanceSettings.vue'),