Skip to content

Instantly share code, notes, and snippets.

@resistorsoftware
Created September 16, 2010 23:46
Show Gist options
  • Save resistorsoftware/583399 to your computer and use it in GitHub Desktop.
Save resistorsoftware/583399 to your computer and use it in GitHub Desktop.
delete '/destroy' do
authorize!
@product = ShopifyAPI::Product.find(params[:id])
unless @product.metafields.empty?
@product.metafields.each do |mf|
if mf.key = 'monkey_bile'
ShopifyAPI::Metafield.delete(mf.id)
end
end
end
@results = []
haml :fucked_monkey
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment