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
Boxiang Sun
gitlab-ce
Commits
f8b5fef9
Commit
f8b5fef9
authored
Mar 09, 2017
by
Bob Van Landuyt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Separate flash messages for resolving one or multiple discussions
parent
ab520862
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
15 deletions
+18
-15
app/controllers/projects/issues_controller.rb
app/controllers/projects/issues_controller.rb
+6
-3
spec/controllers/projects/issues_controller_spec.rb
spec/controllers/projects/issues_controller_spec.rb
+12
-12
No files found.
app/controllers/projects/issues_controller.rb
View file @
f8b5fef9
...
...
@@ -109,9 +109,12 @@ class Projects::IssuesController < Projects::ApplicationController
service
=
Issues
::
CreateService
.
new
(
project
,
current_user
,
create_params
)
@issue
=
service
.
execute
if
service
.
discussions_to_resolve
.
any?
&&
service
.
discussions_to_resolve
.
all?
(
&
:resolved?
)
resolve_count
=
service
.
discussions_to_resolve
.
size
flash
[
:notice
]
=
"Resolved
#{
resolve_count
}
#{
'discussion'
.
pluralize
(
resolve_count
)
}
."
if
service
.
discussions_to_resolve
.
count
(
&
:resolved?
)
>
0
flash
[
:notice
]
=
if
params
[
:discussion_to_resolve
].
present?
"Resolved 1 discussion."
else
"Resolved all discussions."
end
end
respond_to
do
|
format
|
...
...
spec/controllers/projects/issues_controller_spec.rb
View file @
f8b5fef9
...
...
@@ -498,23 +498,23 @@ describe Projects::IssuesController do
it
'sets a flash message'
do
post_issue
(
title:
'Hello'
)
expect
(
flash
[
:notice
]).
to
eq
(
'Resolved
1 discussion
.'
)
expect
(
flash
[
:notice
]).
to
eq
(
'Resolved
all discussions
.'
)
end
it
'pluralizes the flash message when resolving multiple discussions'
do
create
(
:diff_note_on_merge_request
,
noteable:
merge_request
,
project:
project
,
line_number:
15
)
post_issue
(
title:
'Hello'
)
expect
(
flash
[
:notice
]).
to
eq
(
'Resolved 2 discussions.'
)
describe
"resolving a single discussion"
do
before
do
post_issue
({
title:
'Hello'
},
other_params:
{
discussion_to_resolve:
discussion
.
id
})
end
it
"resolves a single discussion"
do
post_issue
(
other_params:
{
discussion_to_resolve:
discussion
.
id
})
it
'resolves a single discussion'
do
discussion
.
first_note
.
reload
expect
(
discussion
.
resolved?
).
to
eq
(
true
)
end
it
'sets a flash message that one discussion was resolved'
do
expect
(
flash
[
:notice
]).
to
eq
(
'Resolved 1 discussion.'
)
end
end
end
context
'Akismet is enabled'
do
...
...
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