1Rails.application.routes.draw do 2 resource :github, only: [:show, :create] 3 resources :sparkles, only: [:index, :create] 4 resources :users, only: [:show] 5 root "sparkles#index" 6end