chore: rollback to default value

Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
Vitor Mattos 2025-12-13 17:20:01 -03:00
parent f4f03eed71
commit 05f609537a
No known key found for this signature in database
GPG key ID: 6FECE2AD4809003A

View file

@ -54,13 +54,13 @@ abstract class LibresignActivitySettings extends ActivitySettings {
*/ */
#[\Override] #[\Override]
public function isDefaultEnabledMail() { public function isDefaultEnabledMail() {
return false; return true;
} }
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
#[\Override] #[\Override]
public function isDefaultEnabledNotification(): bool { public function isDefaultEnabledNotification(): bool {
return false; return true;
} }
} }