I'm working with JSON in Rails. Imagine the route:
# rota: pessoas.json
def index
@pessoas = Pessoa.all
end
That's easy! But if I want to add an optional search by age would have to have a condition:
# rota: pessoas.json?idade=30
def index
if params[:idade]
@pessoas = Pessoa.where("idade = ?", params[:idade])
else
@pessoas = Pessoa.all
end
end
This is not the end of the world, but it gets harder with more optional parameters:
pessoas.json
pessoas.json?idade=30
pessoas.json?sexo=m
pessoas.json?idade=30&sexo=m
What is the best way (more DRY) to do this search where the parameters are optional?