openstreetmap-website/app/models/user_preference.rb
2008-02-23 13:37:36 +00:00

13 lines
256 B
Ruby

class UserPreference < ActiveRecord::Base
belongs_to :user
# Turn this Node in to an XML Node without the <osm> wrapper.
def to_xml_node
el1 = XML::Node.new 'preference'
el1['k'] = self.k
el1['v'] = self.v
return el1
end
end