Guest User

Untitled

a guest
Sep 23rd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class ApplicationController < ActionController::Base
  2. protect_from_forgery
  3.  
  4. def flash_message(type, message)
  5. flash[type] ||= []
  6. flash[type] << message
  7. end
  8.  
  9. end
Add Comment
Please, Sign In to add comment