12626: Add arvados/v1/users/merge API.
[arvados.git] / services / api / app / controllers / arvados / v1 / containers_controller.rb
index 8c63ea7f5b756f39f88cccba6812f26aa9290490..6ec92b0ba66f9a59bc978844563a68d84d20f417 100644 (file)
@@ -60,4 +60,14 @@ class Arvados::V1::ContainersController < ApplicationController
       end
     end
   end
+
+  def secret_mounts
+    if @object &&
+       @object.auth_uuid &&
+       @object.auth_uuid == Thread.current[:api_client_authorization].uuid
+      send_json({"secret_mounts" => @object.secret_mounts})
+    else
+      send_error("Token is not associated with this container.", status: 403)
+    end
+  end
 end