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
Jérome Perrin
gitlab-ce
Commits
606701ad
Commit
606701ad
authored
Aug 21, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Look for milestone by iid in milestone controller
parent
625fb2f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
app/controllers/projects/milestones_controller.rb
app/controllers/projects/milestones_controller.rb
+1
-1
spec/models/milestone_spec.rb
spec/models/milestone_spec.rb
+1
-0
No files found.
app/controllers/projects/milestones_controller.rb
View file @
606701ad
...
...
@@ -81,7 +81,7 @@ class Projects::MilestonesController < Projects::ApplicationController
protected
def
milestone
@milestone
||=
@project
.
milestones
.
find
(
params
[
:id
])
@milestone
||=
@project
.
milestones
.
find
_by_iid!
(
params
[
:id
])
end
def
authorize_admin_milestone!
...
...
spec/models/milestone_spec.rb
View file @
606701ad
...
...
@@ -25,6 +25,7 @@ describe Milestone do
end
describe
"Validation"
do
before
{
subject
.
stub
(
set_iid:
false
)
}
it
{
should
validate_presence_of
(
:title
)
}
it
{
should
validate_presence_of
(
:project
)
}
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