Actions
Feature #34787
closedAbility to set default value for "I don't want to be notified of changes that I make myself"
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Description
Hello,
I search many possibilites to change the default value of no_self_notified when creating a new user.
Actually default is true.
line 54 to 56 in /app/models/user_preference.rb
unless attributes && attributes.key?(:no_self_notified)
self.no_self_notified = true
end
might be :
unless attributes && attributes.key?(:no_self_notified)
self.no_self_notified = Setting.default_users_no_self_notified
end
and add in config/settings.yml
default_users_no_self_notified:
default: true
With this change, we can modify the default value without changing source code of Redmine.
this may be implemented in a future release ?
Regards,
Pierre
Files
Related issues
Updated by Go MAEDA over 3 years ago
- Related to Feature #14574: "I don't want to be notified of changes that I make myself" as Default for all User added
Updated by Go MAEDA over 3 years ago
- File settings.png settings.png added
- File 34787.patch 34787.patch added
Here is a patch to implement the feature. Admin > Settings > Users will have "I don't want to be notified of changes that I make myself" checkbox.
Updated by Pierre DEPREY over 3 years ago
- Status changed from New to Resolved
Thank you, this patch is exactly what i've needed.
Updated by Marius BĂLTEANU over 3 years ago
- Status changed from Resolved to New
We should keep this ticket in "New" until the patch is committed.
Updated by Marius BĂLTEANU over 3 years ago
- Target version set to Candidate for next major release
Updated by Go MAEDA over 3 years ago
- Subject changed from ability to set default value for no_self_notified in config/settings.yml to Ability to set default value for "I don't want to be notified of changes that I make myself"
- Target version changed from Candidate for next major release to 4.2.0
Setting the target version to 4.2.0.
Updated by Go MAEDA over 3 years ago
- Status changed from New to Closed
- Assignee set to Go MAEDA
- Resolution set to Fixed
Committed the patch.
Updated by Go MAEDA over 3 years ago
- Has duplicate Feature #24629: Add option to decide default value for "I don't want to be notified of changes that I make myself" added
Actions