X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5cbd4038edb32b0304bd766e70fc680ea447b52b..9e2db4513e7ebd93bf47898774348957192e11b4:/app/controllers/user_preference_controller.rb diff --git a/app/controllers/user_preference_controller.rb b/app/controllers/user_preference_controller.rb index 60463967c..2b6df65e6 100644 --- a/app/controllers/user_preference_controller.rb +++ b/app/controllers/user_preference_controller.rb @@ -1,10 +1,10 @@ # Update and read user preferences, which are arbitrayr key/val pairs class UserPreferenceController < ApplicationController - skip_before_filter :verify_authenticity_token - before_filter :authorize - before_filter :require_allow_read_prefs, :only => [:read_one, :read] - before_filter :require_allow_write_prefs, :except => [:read_one, :read] - around_filter :api_call_handle_error + skip_before_action :verify_authenticity_token + before_action :authorize + before_action :require_allow_read_prefs, :only => [:read_one, :read] + before_action :require_allow_write_prefs, :except => [:read_one, :read] + around_action :api_call_handle_error ## # return all the preferences as an XML document @@ -13,10 +13,10 @@ class UserPreferenceController < ApplicationController prefs = @user.preferences - el1 = XML::Node.new 'preferences' + el1 = XML::Node.new "preferences" prefs.each do |pref| - el1 << pref.to_xml_node + el1 << pref.to_xml_node end doc.root << el1 @@ -41,7 +41,7 @@ class UserPreferenceController < ApplicationController doc = XML::Parser.string(request.raw_post).parse - doc.find('//preferences/preference').each do |pt| + doc.find("//preferences/preference").each do |pt| if preference = old_preferences.delete(pt["k"]) preference.v = pt["v"] elsif new_preferences.include?(pt["k"])