Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ルーティングに関して、Rails 4でdeviseでエラーが発生しました。に/users/sign_upルートを一致させたい/loginです。このmatch :to方法では結果が得られませんでした。前もって感謝します
/users/sign_up
/login
match :to
以下を に追加しますconfig/routes.rb。
config/routes.rb
devise_scope :user do get '/login', to: 'devise/sessions#new' end