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
c7a1779b
Commit
c7a1779b
authored
Sep 26, 2012
by
Nihad Abbasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.map -> .pluck
parent
841e4fbd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
app/models/milestone.rb
app/models/milestone.rb
+1
-1
app/models/project.rb
app/models/project.rb
+1
-1
No files found.
app/models/milestone.rb
View file @
c7a1779b
...
...
@@ -11,7 +11,7 @@ class Milestone < ActiveRecord::Base
end
def
participants
User
.
where
(
id:
issues
.
map
(
&
:assignee_id
))
User
.
where
(
id:
issues
.
pluck
(
:assignee_id
))
end
def
percent_complete
...
...
app/models/project.rb
View file @
c7a1779b
...
...
@@ -147,7 +147,7 @@ class Project < ActiveRecord::Base
end
def
wiki_notes
Note
.
where
(
noteable_id:
wikis
.
map
(
&
:id
),
noteable_type:
'Wiki'
,
project_id:
self
.
id
)
Note
.
where
(
noteable_id:
wikis
.
pluck
(
:id
),
noteable_type:
'Wiki'
,
project_id:
self
.
id
)
end
def
project_id
...
...
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