Merge pull request #718 from espinosa/indentation

space indentation
This commit is contained in:
Karel Picman 2017-04-28 15:02:25 +02:00 committed by GitHub
commit 3b7e7bec82

View File

@ -102,15 +102,15 @@ class DmsfMailer < Mailer
true
when 'selected'
notify_member.mail_notification?
when 'only_my_events'
author = false
files.each do |file|
if file.involved?(notify_user)
author = true
break
end
when 'only_my_events'
author = false
files.each do |file|
if file.involved?(notify_user)
author = true
break
end
author
end
author
when 'only_owner', 'only_assigned'
author = false
files.each do |file|
@ -132,4 +132,4 @@ class DmsfMailer < Mailer
notify_members.collect { |m| m.user }.uniq
end
end
end