Rails.application.routes.draw do # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html get '/dice-rolls/:dice_type/(:rolls_count)', to: "dice_rolls#rolls" # Defines the root path route ("/") root 'home#welcome' end