notification level
Closed
notification level
Created by: dalcacer
I would love to see a kind of "notification level" which should be adjustable for each user (e.g. at the profile-page). Currently there are way to much notifications that might bug occasional observers.
Created by: dalcacer
I think a dirty quickhack for the impatient could be (?) to edit the
/apps/oberserver/mailer_oberserver.rb
and to toggle certain notifications (for everybody) withindef notify_note note
e.g.
def notify_note note # reject author of note from mail list users = note.project.users.reject { |u| u.id == current_user.id } users.each do |u| case note.noteable_type when "Commit"; Notify.note_commit_email(u.id, note.id).deliver #when "Issue"; Notify.note_issue_email(u.id, note.id).deliver #when "Wiki"; Notify.note_wiki_email(u.id, note.id).deliver when "MergeRequest"; Notify.note_merge_request_email(u.id, note.id).deliver #when "Snippet"; true #else # Notify.note_wall_email(u.id, note.id).deliver end end end
By Administrator on 2012-09-13T09:31:18 (imported from GitLab project)
Created by: sroth80021
+1 Great idea. This is highly useful in our case because we use multiple repositories, and for all of those repositories read-access is needed in GitLab (so cloning is possible). However other than having read access, and maybe seeing some of the activity stream, most people really dont want to get an email about that repo.
So a per-person, per-repo setting for email notification level would be awesome.
See also Issue 1292: https://github.com/gitlabhq/gitlabhq/issues/1292
By Administrator on 2012-09-19T21:56:43 (imported from GitLab project)
Created by: bbodenmiller
+1 I'm also hoping to see a refined notification system. Would like to see the user notified when they are @mentioned in a comment, have the ability to subscribe and unsubscribe from a project, and the option to subscribe and unsubscribe from individual issues.
By Administrator on 2013-01-10T19:03:12 (imported from GitLab project)
Created by: senny
Hey guys
Thanks for your interest in GitLab
❤ We don't use the Github issue tracker for feature requests. Please use http://feedback.gitlab.com/ for this purpose. Have a look at the contribution guidelines for more information.
Also don't hesitate to use the support forum if you have further questions.
There are already a lot of suggestions on the feedback app related to notifications. Please show your support by voting on the ones you like to see implemented.
By Administrator on 2013-04-18T09:08:54 (imported from GitLab project)
Created by: bbodenmiller
By Administrator on 2013-04-18T11:14:19 (imported from GitLab project)