]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/api/traces_controller.rb
Refactor api controllers to inherit from a common ApiController
[rails.git] / app / controllers / api / traces_controller.rb
index 8401e78ae039cfe9774535b946c4d16432e0ad86..88b6edc67903782a0e7b90d4a5d0aa269b8a30b2 100644 (file)
@@ -1,8 +1,7 @@
 module Api
-  class TracesController < ApplicationController
+  class TracesController < ApiController
     layout "site", :except => :georss
 
-    skip_before_action :verify_authenticity_token
     before_action :authorize_web
     before_action :set_locale
     before_action :authorize
@@ -163,7 +162,7 @@ module Api
     end
 
     def offline_redirect
-      redirect_to :action => :offline if STATUS == :gpx_offline
+      redirect_to :action => :offline if Settings.status == "gpx_offline"
     end
   end
 end