26eaf073c4
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3668 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
10 lines
284 B
Ruby
10 lines
284 B
Ruby
class RailsInfoController < ApplicationController
|
|
def properties
|
|
if local_request?
|
|
render :inline => Rails::Info.to_html
|
|
else
|
|
render :text => '<p>For security purposes, this information is only available to local requests.</p>', :status => 500
|
|
end
|
|
end
|
|
end
|