]> git.openstreetmap.org Git - rails.git/blob - app/models/session.rb
The list_bbox_rss won't work at all without a bbox. Thow an error when it's not supplied
[rails.git] / app / models / session.rb
1 class Session < ActiveRecord::Base
2   def [](key)
3     @data = Marshal.load(Base64.decode64(self.data)) unless @data
4
5     return @data[key]
6   end
7 end