9 lines
159 B
Ruby
9 lines
159 B
Ruby
|
module ApplicationHelper
|
||
|
def flash_class(level)
|
||
|
case level
|
||
|
when "notice" then "alert-success"
|
||
|
when "alert" then "alert-danger"
|
||
|
end
|
||
|
end
|
||
|
end
|