1module ApplicationHelper 2 def alert_class_for(flash_type) 3 "alert-#{{ success: 'success', error: 'danger', alert: 'warning', notice: 'info' }.fetch(flash_type.to_sym, flash_type)}" 4 end 5end