Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ and this project adheres to

### Changed

- Default failure notifications for project users are now disabled to minimize
email volume [#3517](https://github.com/OpenFn/lightning/issues/3517)

### Fixed

## [v2.14.1-pre2] - 2025-08-12
Expand Down
2 changes: 1 addition & 1 deletion lib/lightning/projects/project_user.ex
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ defmodule Lightning.Projects.ProjectUser do
belongs_to :user, User
belongs_to :project, Project
field :delete, :boolean, virtual: true
field :failure_alert, :boolean, default: true
field :failure_alert, :boolean, default: false
field :role, RolesEnum
field :digest, DigestEnum, default: :never

Expand Down