Ask A Question

Notifications

You’re not receiving notifications from this thread.

How to solve the [GET] “/login” routing error while building shopify app using ruby on rails?

Gaurav Agarwal asked in Gems / Libraries

I am getting a Routing error says " no routes matches [GET] "/login" " and also in ruby libraries. During running on a server it displays page not found and the logs for that error is Logs show [GET] route error and library error.

I have my index file at following path
views/home/index.html.erb
My code in config/routes.rb is:

Rails.application.routes.draw do
root 'home#index' 
get 'show' => 'welcomes#show'
resources :home

I already tried adding login in routes.rb.

Error logs

Reply

Must be because you have a controller filter that redirects to a /login route.

But you don't have any /login route in your route.rb file.

Are you trying to implement authentication but are new to rails ?

Reply

Yes, @ThomasBlumenfeld I am trying to implement authentication. And somehow I successed with this method and now it's generating this error.

Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 81,842+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.

    Screencast tutorials to help you learn Ruby on Rails, Javascript, Hotwire, Turbo, Stimulus.js, PostgreSQL, MySQL, Ubuntu, and more.

    © 2024 GoRails, LLC. All rights reserved.