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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
34fcade1
Commit
34fcade1
authored
Jun 01, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix replying to a commit discussion displayed in the context of an MR
parent
c72abcef
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
51 additions
and
2 deletions
+51
-2
app/helpers/notes_helper.rb
app/helpers/notes_helper.rb
+1
-1
app/models/discussion.rb
app/models/discussion.rb
+6
-0
changelogs/unreleased/dm-comment-on-mr-commit-discussion.yml
changelogs/unreleased/dm-comment-on-mr-commit-discussion.yml
+4
-0
spec/features/merge_requests/discussion_spec.rb
spec/features/merge_requests/discussion_spec.rb
+40
-1
No files found.
app/helpers/notes_helper.rb
View file @
34fcade1
...
...
@@ -50,7 +50,7 @@ module NotesHelper
def
link_to_reply_discussion
(
discussion
,
line_type
=
nil
)
return
unless
current_user
data
=
{
discussion_id:
discussion
.
id
,
line_type:
line_type
}
data
=
{
discussion_id:
discussion
.
reply_
id
,
line_type:
line_type
}
button_tag
'Reply...'
,
class:
'btn btn-text-field js-discussion-reply-button'
,
data:
data
,
title:
'Add a reply'
...
...
app/models/discussion.rb
View file @
34fcade1
...
...
@@ -85,6 +85,12 @@ class Discussion
first_note
.
discussion_id
(
context_noteable
)
end
def
reply_id
# To reply to this discussion, we need the actual discussion_id from the database,
# not the potentially overwritten one based on the noteable.
first_note
.
discussion_id
end
alias_method
:to_param
,
:id
def
diff_discussion?
...
...
changelogs/unreleased/dm-comment-on-mr-commit-discussion.yml
0 → 100644
View file @
34fcade1
---
title
:
Fix replying to a commit discussion displayed in the context of an MR
merge_request
:
author
:
spec/features/merge_requests/discussion_spec.rb
View file @
34fcade1
...
...
@@ -5,7 +5,7 @@ feature 'Merge Request Discussions', feature: true do
login_as
:admin
end
context
"Diff discussions"
do
describe
"Diff discussions"
do
let
(
:merge_request
)
{
create
(
:merge_request
,
importing:
true
)
}
let
(
:project
)
{
merge_request
.
source_project
}
let!
(
:old_merge_request_diff
)
{
merge_request
.
merge_request_diffs
.
create
(
diff_refs:
outdated_diff_refs
)
}
...
...
@@ -48,4 +48,43 @@ feature 'Merge Request Discussions', feature: true do
end
end
end
describe
'Commit comments displayed in MR context'
,
:js
do
let
(
:merge_request
)
{
create
(
:merge_request
)
}
let
(
:project
)
{
merge_request
.
project
}
shared_examples
'a functional discussion'
do
let
(
:discussion_id
)
{
note
.
discussion_id
(
merge_request
)
}
it
'is displayed'
do
expect
(
page
).
to
have_css
(
".discussion[data-discussion-id='
#{
discussion_id
}
']"
)
end
it
'can be replied to'
do
within
(
".discussion[data-discussion-id='
#{
discussion_id
}
']"
)
do
click_button
'Reply...'
fill_in
'note[note]'
,
with:
'Test!'
click_button
'Comment'
expect
(
page
).
to
have_css
(
'.note'
,
count:
2
)
end
end
end
before
(
:each
)
do
visit
namespace_project_merge_request_path
(
project
.
namespace
,
project
,
merge_request
)
end
context
'a regular commit comment'
do
let
(
:note
)
{
create
(
:note_on_commit
,
project:
project
)
}
it_behaves_like
'a functional discussion'
end
context
'a commit diff comment'
do
let
(
:note
)
{
create
(
:diff_note_on_commit
,
project:
project
)
}
it_behaves_like
'a functional discussion'
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