Skip to content

Instantly share code, notes, and snippets.

@ManickYoj
Created January 9, 2022 03:55
Show Gist options
  • Save ManickYoj/286aad5e55b6e450f3bc49e4ec5e085e to your computer and use it in GitHub Desktop.
Save ManickYoj/286aad5e55b6e450f3bc49e4ec5e085e to your computer and use it in GitHub Desktop.
Devise Turbo Controller for Rails 7 Setup
class TurboDeviseController < ApplicationController
class Responder < ActionController::Responder
def to_turbo_stream
controller.render(options.merge(formats: :html))
rescue ActionView::MissingTemplate => error
if get?
raise error
elsif has_errors? && default_action
render rendering_options.merge(formats: :html, status: :unprocessable_entity)
else
redirect_to navigation_location
end
end
end
self.responder = Responder
respond_to :html, :turbo_stream
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment