Add validation for maximum ID passed to changesets#index
This commit is contained in:
parent
e3c43e4a1a
commit
d8b468e7a1
2 changed files with 11 additions and 0 deletions
|
@ -18,6 +18,8 @@ class ChangesetsController < ApplicationController
|
|||
##
|
||||
# list non-empty changesets in reverse chronological order
|
||||
def index
|
||||
param! :max_id, Integer, :min => 1
|
||||
|
||||
@params = params.permit(:display_name, :bbox, :friends, :nearby, :max_id, :list)
|
||||
|
||||
if request.format == :atom && @params[:max_id]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue