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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
bb179a08
Commit
bb179a08
authored
Oct 13, 2021
by
Robert May
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ensure commits limit is always positive
Changelog: fixed
parent
0b48a8a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
app/controllers/projects/commits_controller.rb
app/controllers/projects/commits_controller.rb
+3
-1
spec/controllers/projects/commits_controller_spec.rb
spec/controllers/projects/commits_controller_spec.rb
+16
-0
No files found.
app/controllers/projects/commits_controller.rb
View file @
bb179a08
...
...
@@ -63,7 +63,9 @@ class Projects::CommitsController < Projects::ApplicationController
def
set_commits
render_404
unless
@path
.
empty?
||
request
.
format
==
:atom
||
@repository
.
blob_at
(
@commit
.
id
,
@path
)
||
@repository
.
tree
(
@commit
.
id
,
@path
).
entries
.
present?
@limit
=
(
params
[
:limit
]
||
40
).
to_i
limit
=
params
[
:limit
].
to_i
@limit
=
limit
>
0
?
limit
:
40
# limit can only ever be a positive number
@offset
=
(
params
[
:offset
]
||
0
).
to_i
search
=
params
[
:search
]
author
=
params
[
:author
]
...
...
spec/controllers/projects/commits_controller_spec.rb
View file @
bb179a08
...
...
@@ -67,6 +67,22 @@ RSpec.describe Projects::CommitsController do
end
end
context
"with an invalid limit"
do
before
do
get
(
:show
,
params:
{
namespace_id:
project
.
namespace
,
project_id:
project
,
id:
id
,
limit:
"foo"
})
end
let
(
:id
)
{
'master/README.md'
}
it
{
is_expected
.
to
respond_with
(
:success
)
}
end
context
"when the ref name ends in .atom"
do
context
"when the ref does not exist with the suffix"
do
before
do
...
...
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