Rails 5のこのコード
class PagesController < ApplicationController
def action
render nothing: true
end
end
次の非推奨警告が表示されます
DEPRECATION WARNING: :nothing` option is deprecated and will be removed in Rails 5.1. Use `head` method to respond with empty response body.
これを修正するにはどうすればよいですか?