module Graphiti::Rails::Responders
Public Instance Methods
respond_with(*args, &blk)
click to toggle source
Override to avoid location url generation (for now)
Calls superclass method
# File lib/graphiti/rails/responders.rb, line 13 def respond_with(*args, &blk) opts = args.extract_options! opts[:location] = nil args << opts super(*args, &blk) end