Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Privacy
Imprint
Contact
Login methods
Sign in
Toggle navigation
Menu
Open sidebar
projects.thm.de
GitLab FOSS
Commits
9a250ad6
Commit
9a250ad6
authored
Jan 06, 2016
by
Dmitriy Zaporozhets
Browse files
Filter commits by search parameter
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
61561a9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/controllers/projects/commits_controller.rb
View file @
9a250ad6
...
...
@@ -8,10 +8,16 @@ class Projects::CommitsController < Projects::ApplicationController
before_action
:authorize_download_code!
def
show
@repo
=
@project
.
repository
@limit
,
@offset
=
(
params
[
:limit
]
||
40
).
to_i
,
(
params
[
:offset
]
||
0
).
to_i
search
=
params
[
:search
]
@commits
=
if
search
.
present?
@repository
.
find_commits_by_message
(
search
).
compact
else
@repository
.
commits
(
@ref
,
@path
,
@limit
,
@offset
)
end
@commits
=
@repo
.
commits
(
@ref
,
@path
,
@limit
,
@offset
)
@note_counts
=
project
.
notes
.
where
(
commit_id:
@commits
.
map
(
&
:id
)).
group
(
:commit_id
).
count
...
...
Write
Preview
Supports
Markdown
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