X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/17e6e69c39072d8e6cb316b75b311e89c92cca45..77bece20ff81805e97e73d87e8dadabf1db13267:/app/controllers/api/users_controller.rb diff --git a/app/controllers/api/users_controller.rb b/app/controllers/api/users_controller.rb index e6922e0a0..d97e8774e 100644 --- a/app/controllers/api/users_controller.rb +++ b/app/controllers/api/users_controller.rb @@ -1,7 +1,5 @@ module Api class UsersController < ApiController - layout "site", :except => [:api_details] - before_action :disable_terms_redirect, :only => [:details] before_action :authorize, :only => [:details, :gpx_files] @@ -13,7 +11,7 @@ module Api def show if @user.visible? - render :action => :show, :content_type => "text/xml" + render :content_type => "text/xml" else head :gone end @@ -33,12 +31,12 @@ module Api @users = User.visible.find(ids) - render :action => :index, :content_type => "text/xml" + render :content_type => "text/xml" end def gpx_files @traces = current_user.traces.reload - render "api/traces/trace", :content_type => "application/xml" + render :content_type => "application/xml" end private