Commit 7416fbb3 authored by http://jneen.net/'s avatar http://jneen.net/

rubocop fix

parent 90dd3fb3
...@@ -276,14 +276,13 @@ class Member < ActiveRecord::Base ...@@ -276,14 +276,13 @@ class Member < ActiveRecord::Base
@notification_setting ||= user.notification_settings_for(source) @notification_setting ||= user.notification_settings_for(source)
end end
def notifiable?(type, opts={}) def notifiable?(type, opts = {})
# always notify when there isn't a user yet # always notify when there isn't a user yet
return true if user.blank? return true if user.blank?
NotificationRecipientService.notifiable?(user, type, notifiable_options.merge(opts)) NotificationRecipientService.notifiable?(user, type, notifiable_options.merge(opts))
end end
private private
def send_invite def send_invite
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment