Rails.application.routes.draw do

  root 'welcome#index'
  get '/testbox(?:ids[])', to: 'welcome#testbox', as: 'testbox'
  get '/testbox/:id', to: 'welcome#testbox', as: 'testbox_single'
  get '/getjson/:id', to: 'welcome#getjson', as: 'getjson'

end
