mastodon/app/helpers/flashes_helper.rb
2025-07-17 06:36:28 +00:00

8 lines
162 B
Ruby

# frozen_string_literal: true
module FlashesHelper
def user_facing_flashes
flash.to_hash.slice('alert', 'error', 'notice', 'success', 'warning')
end
end