20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / views / application / _show_advanced_curl_example.html.erb
diff --git a/apps/workbench/app/views/application/_show_advanced_curl_example.html.erb b/apps/workbench/app/views/application/_show_advanced_curl_example.html.erb
deleted file mode 100644 (file)
index c517de3..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-<%# Copyright (C) The Arvados Authors. All rights reserved.
-
-SPDX-License-Identifier: AGPL-3.0 %>
-
-An example curl command to update the "<%= object.attributes.keys[-3] %>" attribute for the current <%= object.class.to_s.underscore %>:
-<pre>
-curl -X PUT \
- -H "Authorization: OAuth2 $ARVADOS_API_TOKEN" \
- --data-urlencode <%= object.class.to_s.underscore %>@/dev/stdin \
- https://$ARVADOS_API_HOST/arvados/v1/<%= object.class.to_s.pluralize.underscore %>/<%= object.uuid %> \
- &lt;&lt;EOF
-<%= JSON.pretty_generate({object.attributes.keys[-3] => object.attributes.values[-3]}) %>
-EOF
-</pre>