Satisfy Rubocop.

This commit is contained in:
Douwe Maan 2015-04-21 17:41:18 +02:00
parent 2456695422
commit 0db79443ee
1 changed files with 12 additions and 11 deletions

View File

@ -27,16 +27,17 @@ module Participable
end
private
def participants_for(value, current_user = nil)
case value
when User
[value]
when Array
value.flat_map { |v| participants_for(v, current_user) }
when Participable
value.participants(current_user)
when Mentionable
value.mentioned_users(current_user)
end
def participants_for(value, current_user = nil)
case value
when User
[value]
when Array
value.flat_map { |v| participants_for(v, current_user) }
when Participable
value.participants(current_user)
when Mentionable
value.mentioned_users(current_user)
end
end
end