Created
January 31, 2021 01:18
-
-
Save mrjonesbot/9d65e7c68dd4204a0ad57fe979fb92e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Users::DeviseController < 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