module Api
class UsersController < ApiController
- before_action :check_api_readable
before_action :disable_terms_redirect, :only => [:details]
before_action :setup_user_auth, :only => [:show, :index]
before_action :authorize, :only => [:details, :gpx_files]
authorize_resource
- around_action :api_call_handle_error
load_resource :only => :show
before_action :set_request_formats, :except => [:gpx_files]