Skip to content

Commit 0cf44f0

Browse files
committed
fix: standardize notification defaults to false
Changes default values for email and push notifications to false in LibresignActivitySettings, ensuring all LibreSign activity types follow the same pattern and respect user opt-in preference. Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 650d26e commit 0cf44f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Activity/Settings/LibresignActivitySettings.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ public function canChangeMail() {
5454
*/
5555
#[\Override]
5656
public function isDefaultEnabledMail() {
57-
return true;
57+
return false;
5858
}
5959
/**
6060
* {@inheritdoc}
6161
*/
6262
#[\Override]
6363
public function isDefaultEnabledNotification(): bool {
64-
return true;
64+
return false;
6565
}
6666
}

0 commit comments

Comments
 (0)