]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/user_preference.rb
Create an ApplicationRecord for models to inherit from
[rails.git] / app / models / user_preference.rb
index 781dd626a7c251cc98dcc56232f9c013bf5500ad..d5cad3978c81f087cacee2b13f3e152aa87df506 100644 (file)
 #  user_preferences_user_id_fkey  (user_id => users.id)
 #
 
-class UserPreference < ActiveRecord::Base
+class UserPreference < ApplicationRecord
   self.primary_keys = "user_id", "k"
 
   belongs_to :user
 
   validates :user, :presence => true, :associated => true
-  validates :k, :v, :length => 1..255, :invalid_chars => true
-
-  # Turn this Node in to an XML Node without the <osm> wrapper.
-  def to_xml_node
-    el1 = XML::Node.new "preference"
-    el1["k"] = k
-    el1["v"] = v
-
-    el1
-  end
+  validates :k, :v, :length => 1..255, :characters => true
 end