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
Kazuhiko Shiozaki
gitlab-ce
Commits
a42d84ec
Commit
a42d84ec
authored
Jan 23, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Faster autocomplete without unused description
parent
25a5c848
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
app/controllers/projects_controller.rb
app/controllers/projects_controller.rb
+1
-1
app/services/projects/autocomplete_service.rb
app/services/projects/autocomplete_service.rb
+2
-2
No files found.
app/controllers/projects_controller.rb
View file @
a42d84ec
...
@@ -119,7 +119,7 @@ class ProjectsController < ApplicationController
...
@@ -119,7 +119,7 @@ class ProjectsController < ApplicationController
}
}
respond_to
do
|
format
|
respond_to
do
|
format
|
format
.
json
{
render
:json
=>
@suggestions
}
format
.
json
{
render
json:
@suggestions
}
end
end
end
end
...
...
app/services/projects/autocomplete_service.rb
View file @
a42d84ec
...
@@ -5,11 +5,11 @@ module Projects
...
@@ -5,11 +5,11 @@ module Projects
end
end
def
issues
def
issues
@project
.
issues
.
opened
.
select
([
:iid
,
:title
,
:description
])
@project
.
issues
.
opened
.
select
([
:iid
,
:title
])
end
end
def
merge_requests
def
merge_requests
@project
.
merge_requests
.
opened
.
select
([
:iid
,
:title
,
:description
])
@project
.
merge_requests
.
opened
.
select
([
:iid
,
:title
])
end
end
end
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