diff --git a/lib/app.rb b/lib/app.rb index 6122b9f..85574c0 100644 --- a/lib/app.rb +++ b/lib/app.rb @@ -7,7 +7,7 @@ set :root, File.expand_path('..', File.dirname(__FILE__)) helpers do def base - params[:base] || 'EUR' + params[:base] || Snapshot::DEFAULT_BASE end end @@ -22,9 +22,9 @@ get '/latest' do .to_hash end -get '/:date' do |date| +get '/:date' do jsonp Snapshot - .new(date) + .new(params[:date]) .with_base(base) .to_hash end