Sha256: 4174eac59138b6fac2b18a5ed7895a321af564ff046bf6832b69a818bda70dda
Contents?: true
Size: 362 Bytes
Versions: 25
Compression:
Stored size: 362 Bytes
Contents
module ApplicationHelper include Loco::Helpers def admin_panel? controller_path.split('/').first == 'admin' end def user_panel? controller_path.split('/').first == 'user' end def body_styles if admin_panel? 'background-color: #99734B;' elsif user_panel? 'background-color: #73994B;' else '' end end end
Version data entries
25 entries across 25 versions & 1 rubygems