diff config/routes.rb @ 499:d2ef59c9a4b4

Use rails rubocop
author nanaya <me@nanaya.net>
date Sun, 15 Dec 2024 22:33:27 +0900
parents 68eb23b52864
children
line wrap: on
line diff
--- a/config/routes.rb	Sun Dec 15 22:31:14 2024 +0900
+++ b/config/routes.rb	Sun Dec 15 22:33:27 2024 +0900
@@ -1,5 +1,5 @@
 Rails.application.routes.draw do
   post "(pastes)" => "pastes#create", :format => /(html|json|xml|txt)/, :as => "pastes"
-  resources :pastes, :only => [:show, :destroy], :path => "/"
-  root :to => "pastes#new"
+  resources :pastes, only: [ :show, :destroy ], path: "/"
+  root to: "pastes#new"
 end