]> source.dussan.org Git - redmine.git/commitdiff
add empty line after guard clause to app/models/email_address.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 26 Nov 2020 14:46:36 +0000 (14:46 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 26 Nov 2020 14:46:36 +0000 (14:46 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20500 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/email_address.rb

index 1005914dee22123dd113ebfdb9aaad00253429bf..b2a3af7f90d34e6594c851664cc57649fb5a2e10 100644 (file)
@@ -62,6 +62,7 @@ class EmailAddress < ActiveRecord::Base
     domain = domain_or_email.split('@').last
     return false if denied.present? && domain_in?(domain, denied)
     return false if allowed.present? && !domain_in?(domain, allowed)
+
     true
   end