You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
245 B

10 months ago
3 months ago
10 months ago
  1. class ApplicationController < ActionController::Base
  2. around_action :tag_log
  3. private
  4. def flash_stream = turbo_stream.replace(:notification, partial: 'layouts/notification')
  5. def tag_log(&) = SemanticLogger.tagged(session[:toto1], &)
  6. end