]> git.openstreetmap.org Git - rails.git/commitdiff
Allow mass assignment of user preference keys and values
authorTom Hughes <tom@compton.nu>
Sun, 4 Nov 2012 14:40:24 +0000 (14:40 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 4 Nov 2012 14:41:08 +0000 (14:41 +0000)
app/models/user_preference.rb

index b5110bbf5592fd37b599e8f599ea27c2e77580e7..f10d0a3f98ec49c9e88da027aa0f22a53debe9a5 100644 (file)
@@ -6,6 +6,8 @@ class UserPreference < ActiveRecord::Base
   validates_length_of :k, :within => 1..255
   validates_length_of :v, :within => 1..255
 
+  attr_accessible :k, :v
+
   # Turn this Node in to an XML Node without the <osm> wrapper.
   def to_xml_node
     el1 = XML::Node.new 'preference'