diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-04-22 22:22:34 -0400 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-23 04:22:34 +0200 |
commit | 532bec6e564884c2bd5b2bcc7cab929f4f2cabf5 (patch) | |
tree | bfaea49ce3400ad9341a37638ede98aff7007f17 /app/helpers | |
parent | ee82d8a8761f0bedc97f5e79565b7c5142c1b8bd (diff) |
Clean up flash display in views (#2336)
* Add flashes partial to DRY up admin/auth layouts * Further consolidate flash messages
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/flashes_helper.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/helpers/flashes_helper.rb b/app/helpers/flashes_helper.rb new file mode 100644 index 000000000..6c5e93709 --- /dev/null +++ b/app/helpers/flashes_helper.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +module FlashesHelper + def user_facing_flashes + flash.to_hash.slice('alert', 'error', 'notice', 'success') + end +end |