Replaced render :text with render :plain in AC gem bug report template

- Followup of https://github.com/rails/rails/pull/20929.
 [ci skip]
This commit is contained in:
Prathamesh Sonpatki 2015-07-18 17:05:40 +05:30
parent 0daf1619a0
commit dafe2997ca

@ -32,7 +32,7 @@ class TestController < ActionController::Base
include Rails.application.routes.url_helpers
def index
render text: 'Home'
render plain: 'Home'
end
end