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
e62b5a2b
Commit
e62b5a2b
authored
Mar 27, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Only allow user to see participants from groups they have access to.
parent
756e7aa8
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
12 deletions
+12
-12
app/models/concerns/issuable.rb
app/models/concerns/issuable.rb
+4
-4
app/models/concerns/mentionable.rb
app/models/concerns/mentionable.rb
+2
-2
app/services/projects/participants_service.rb
app/services/projects/participants_service.rb
+2
-2
app/views/projects/issues/_discussion.html.haml
app/views/projects/issues/_discussion.html.haml
+2
-2
app/views/projects/merge_requests/show/_participants.html.haml
...iews/projects/merge_requests/show/_participants.html.haml
+2
-2
No files found.
app/models/concerns/issuable.rb
View file @
e62b5a2b
...
...
@@ -118,16 +118,16 @@ module Issuable
end
# Return all users participating on the discussion
def
participants
def
participants
(
current_user
=
self
.
author
)
users
=
[]
users
<<
author
users
<<
assignee
if
is_assigned?
mentions
=
[]
mentions
<<
self
.
mentioned_users
mentions
<<
self
.
mentioned_users
(
current_user
)
notes
.
each
do
|
note
|
users
<<
note
.
author
mentions
<<
note
.
mentioned_users
mentions
<<
note
.
mentioned_users
(
current_user
)
end
users
.
concat
(
mentions
.
reduce
([],
:|
)).
uniq
...
...
@@ -140,7 +140,7 @@ module Issuable
return
subscription
.
subscribed
end
participants
.
include?
(
user
)
participants
(
user
)
.
include?
(
user
)
end
def
toggle_subscription
(
user
)
...
...
app/models/concerns/mentionable.rb
View file @
e62b5a2b
...
...
@@ -42,10 +42,10 @@ module Mentionable
Note
.
cross_reference_exists?
(
target
,
local_reference
)
end
def
mentioned_users
def
mentioned_users
(
current_user
=
nil
)
return
[]
if
mentionable_text
.
blank?
ext
=
Gitlab
::
ReferenceExtractor
.
new
(
self
.
project
)
ext
=
Gitlab
::
ReferenceExtractor
.
new
(
self
.
project
,
current_user
)
ext
.
analyze
(
text
)
ext
.
users
.
uniq
end
...
...
app/services/projects/participants_service.rb
View file @
e62b5a2b
...
...
@@ -21,10 +21,10 @@ module Projects
users
=
case
type
when
"Issue"
issue
=
@project
.
issues
.
find_by_iid
(
id
)
issue
?
issue
.
participants
:
[]
issue
?
issue
.
participants
(
user
)
:
[]
when
"MergeRequest"
merge_request
=
@project
.
merge_requests
.
find_by_iid
(
id
)
merge_request
?
merge_request
.
participants
:
[]
merge_request
?
merge_request
.
participants
(
user
)
:
[]
when
"Commit"
author_ids
=
Note
.
for_commit_id
(
id
).
pluck
(
:author_id
).
uniq
User
.
where
(
id:
author_ids
)
...
...
app/views/projects/issues/_discussion.html.haml
View file @
e62b5a2b
...
...
@@ -9,8 +9,8 @@
.votes-holder.pull-right
#votes
=
render
'votes/votes_block'
,
votable:
@issue
.participants
%span
=
pluralize
(
@issue
.
participants
.
count
,
'participant'
)
-
@issue
.
participants
.
each
do
|
participant
|
%span
=
pluralize
(
@issue
.
participants
(
current_user
)
.
count
,
'participant'
)
-
@issue
.
participants
(
current_user
)
.
each
do
|
participant
|
=
link_to_member
(
@project
,
participant
,
name:
false
,
size:
24
)
.voting_notes
#notes
=
render
"projects/notes/notes_with_form"
%aside
.col-md-3
...
...
app/views/projects/merge_requests/show/_participants.html.haml
View file @
e62b5a2b
.participants
%span
#{
@merge_request
.
participants
.
count
}
participants
-
@merge_request
.
participants
.
each
do
|
participant
|
%span
#{
@merge_request
.
participants
(
current_user
)
.
count
}
participants
-
@merge_request
.
participants
(
current_user
)
.
each
do
|
participant
|
=
link_to_member
(
@project
,
participant
,
name:
false
,
size:
24
)
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