Commit 0db79443 authored by Douwe Maan's avatar Douwe Maan

Satisfy Rubocop.

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