I am wondering if it is possible to have default session values set
please?
I have come across a post stating to add a before filter to the
ApplicationController, however this seems a bit inefficient to me. I am
looking for a more specific place to load up session variables where
they
will only be loaded once.
I am wondering if it is possible to have default session values set please?
I have come across a post stating to add a before filter to the
ApplicationController, however this seems a bit inefficient to me. I am
looking for a more specific place to load up session variables where they
will only be loaded once.
Why set them at all? you could define methods such as
def session_feature_x
session[:x] || ‘default’
end
Fred
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.