twinturbo/http_log

View on GitHub
app/controllers/http_log/requests_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module HttpLog
  class RequestsController < ActionController::Base
    respond_to :html, :xml, :json

    def show
      @log = HttpLog::Request.find params[:id]
      respond_with @log
    end
  end
end