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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
8828e45c
Commit
8828e45c
authored
Apr 04, 2016
by
Felipe Artur
Committed by
Yorick Peterse
Apr 08, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve code
parent
cc52d475
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
17 deletions
+22
-17
app/controllers/groups/milestones_controller.rb
app/controllers/groups/milestones_controller.rb
+13
-16
app/views/groups/milestones/new.html.haml
app/views/groups/milestones/new.html.haml
+8
-0
spec/controllers/groups/milestones_controller_spec.rb
spec/controllers/groups/milestones_controller_spec.rb
+1
-1
No files found.
app/controllers/groups/milestones_controller.rb
View file @
8828e45c
...
...
@@ -24,7 +24,7 @@ class Groups::MilestonesController < Groups::ApplicationController
if
create_milestones
(
project_ids
,
title
)
redirect_to
milestone_path
(
title
)
else
render_new_with_error
(
@error
)
render_new_with_error
(
project_ids
.
empty?
)
end
end
...
...
@@ -42,28 +42,25 @@ class Groups::MilestonesController < Groups::ApplicationController
private
def
create_milestones
(
project_ids
,
title
)
unless
project_ids
.
present?
@error
=
"Please select at least one project."
return
false
end
return
false
unless
project_ids
.
present?
begin
ActiveRecord
::
Base
.
transaction
do
@projects
.
where
(
id:
project_ids
).
each
do
|
project
|
Milestones
::
CreateService
.
new
(
project
,
current_user
,
milestone_params
).
execute
end
ActiveRecord
::
Base
.
transaction
do
@projects
.
where
(
id:
project_ids
).
each
do
|
project
|
Milestones
::
CreateService
.
new
(
project
,
current_user
,
milestone_params
).
execute
end
end
true
true
rescue
=>
e
@error
=
"Error creating milestone:
#{
e
.
message
}
."
false
end
flash
.
now
[
:alert
]
=
"An error occurred while creating the milestone:
#{
e
.
message
}
"
false
end
def
render_new_with_error
(
e
rror
)
def
render_new_with_error
(
e
mpty_project_ids
)
@milestone
=
Milestone
.
new
(
milestone_params
)
flash
[
:alert
]
=
error
@milestone
.
errors
.
add
(
:project_id
,
"Please select at least one project."
)
if
empty_project_ids
render
:new
end
...
...
app/views/groups/milestones/new.html.haml
View file @
8828e45c
...
...
@@ -10,6 +10,14 @@
=
form_for
@milestone
,
url:
group_milestones_path
(
@group
),
html:
{
class:
'form-horizontal milestone-form gfm-form js-quick-submit js-requires-input'
}
do
|
f
|
.row
-
if
@milestone
.
errors
.
any?
#error_explanation
.alert.alert-danger
%ul
-
@milestone
.
errors
.
full_messages
.
each
do
|
msg
|
%li
=
msg
.col-md-6
.form-group
=
f
.
label
:title
,
"Title"
,
class:
"control-label"
...
...
spec/controllers/groups/milestones_controller_spec.rb
View file @
8828e45c
...
...
@@ -27,7 +27,7 @@ describe Groups::MilestonesController do
it
"redirects to new when there are no project ids"
do
post
:create
,
group_id:
group
.
id
,
milestone:
{
title:
title
,
project_ids:
[
""
]
}
expect
(
response
).
to
render_template
:new
expect
(
flash
[
:alert
]
).
to_not
be_nil
expect
(
assigns
(
:milestone
).
errors
).
to_not
be_nil
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