Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
0db79443
Commit
0db79443
authored
Apr 21, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Satisfy Rubocop.
parent
24566954
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
11 deletions
+12
-11
app/models/concerns/participable.rb
app/models/concerns/participable.rb
+12
-11
No files found.
app/models/concerns/participable.rb
View file @
0db79443
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment