- class OldController < ApplicationController
- require "xml/libxml"
-
- skip_before_action :verify_authenticity_token
- before_action :setup_user_auth, :only => [:history, :version]
- before_action :api_deny_access_handler
+ class OldController < ApiController
+ before_action :check_api_readable
+ before_action :check_api_writable, :only => [:redact]
+ before_action :setup_user_auth, :only => [:history, :show]