1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-15 15:13:48 -05:00
Matt Jankowski 532bec6e56 Clean up flash display in views ()
* Add flashes partial to DRY up admin/auth layouts

* Further consolidate flash messages
2017-04-23 04:22:34 +02:00

8 lines
151 B
Ruby

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