]> git.openstreetmap.org Git - rails.git/blob - app/models/user_preference.rb
split_node_tags: Merge changes from main branch.
[rails.git] / app / models / user_preference.rb
1 class UserPreference < ActiveRecord::Base
2   belongs_to :user
3
4   # Turn this Node in to an XML Node without the <osm> wrapper.
5   def to_xml_node
6     el1 = XML::Node.new 'preference'
7     el1['k'] = self.k
8     el1['v'] = self.v
9     
10     return el1
11   end
12
13 end