space indentation

This commit is contained in:
espinosa 2017-04-28 14:43:32 +02:00 committed by GitHub
parent c7328cc6e3
commit 21ba4bef99

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