cf503bfba3
(And probably even then)
13 lines
278 B
Ruby
13 lines
278 B
Ruby
module TurboFlash
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
helper_method :turbo_stream_flash
|
|
end
|
|
|
|
private
|
|
def turbo_stream_flash(**flash_options)
|
|
turbo_stream.replace(:flash, partial: "layouts/shared/flash", locals: { flash: flash_options })
|
|
end
|
|
end
|