- before_action :check_api_writable, :only => [:create, :hide_comment, :unhide_comment]
- before_action :check_api_readable, :except => [:create, :comments_feed]
- before_action(:only => [:comments_feed]) { |c| c.check_database_readable(true) }
- around_action :api_call_handle_error, :except => [:comments_feed]
- around_action :api_call_timeout, :except => [:comments_feed]
- around_action :web_timeout, :only => [:comments_feed]
+ before_action :check_api_writable, :only => [:create, :destroy, :restore]
+ before_action :check_api_readable, :except => [:create, :index]
+ before_action(:only => [:index]) { |c| c.check_database_readable(true) }
+ around_action :api_call_handle_error, :except => [:index]
+ around_action :api_call_timeout, :except => [:index]
+ around_action :web_timeout, :only => [:index]