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
iv
gitlab-ce
Commits
7530827e
Commit
7530827e
authored
Mar 11, 2016
by
tiagonbotelho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes issues for mr acceptance
parent
b9d13c11
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
8 deletions
+12
-8
app/finders/issuable_finder.rb
app/finders/issuable_finder.rb
+6
-7
app/models/milestone.rb
app/models/milestone.rb
+6
-1
No files found.
app/finders/issuable_finder.rb
View file @
7530827e
...
...
@@ -94,10 +94,6 @@ class IssuableFinder
params
[
:milestone_title
].
present?
end
def
upcoming?
params
[
:milestone_title
]
==
'Upcoming'
end
def
filter_by_no_milestone?
milestones?
&&
params
[
:milestone_title
]
==
Milestone
::
None
.
title
end
...
...
@@ -248,14 +244,17 @@ class IssuableFinder
items
end
def
upcoming?
params
[
:milestone_title
]
==
'#upcoming'
&&
projects
end
def
by_milestone
(
items
)
if
milestones?
if
filter_by_no_milestone?
items
=
items
.
where
(
milestone_id:
[
-
1
,
nil
])
elsif
upcoming?
upcoming
=
Milestone
.
where
(
project_id:
projects
)
.
where
(
'due_date > ?'
,
Time
.
now
).
order
(
due_date: :asc
).
first
items
=
items
.
joins
(
:milestone
).
where
(
milestone:
{
title:
upcoming
.
title
})
upcoming
=
Milestone
.
upcoming
(
projects
)
items
=
items
.
joins
(
:milestone
).
where
(
milestones:
{
title:
upcoming
.
title
})
else
items
=
items
.
joins
(
:milestone
).
where
(
milestones:
{
title:
params
[
:milestone_title
]
})
...
...
app/models/milestone.rb
View file @
7530827e
...
...
@@ -19,7 +19,7 @@ class Milestone < ActiveRecord::Base
MilestoneStruct
=
Struct
.
new
(
:title
,
:name
,
:id
)
None
=
MilestoneStruct
.
new
(
'No Milestone'
,
'No Milestone'
,
0
)
Any
=
MilestoneStruct
.
new
(
'Any Milestone'
,
''
,
-
1
)
Upcoming
=
MilestoneStruct
.
new
(
'Upcoming'
,
''
,
-
2
)
Upcoming
=
MilestoneStruct
.
new
(
'Upcoming'
,
'
#upcoming
'
,
-
2
)
include
InternalId
include
Sortable
...
...
@@ -82,6 +82,11 @@ class Milestone < ActiveRecord::Base
super
(
"milestones"
,
/(?<milestone>\d+)/
)
end
def
self
.
upcoming
(
projects
)
self
.
where
(
project_id:
projects
)
.
where
(
'due_date > ?'
,
Time
.
now
).
order
(
due_date: :asc
).
first
end
def
to_reference
(
from_project
=
nil
)
escaped_title
=
self
.
title
.
gsub
(
"]"
,
"
\\
]"
)
...
...
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