3296: display read-only email, first name, last name, and identity url in the profile...
[arvados.git] / apps / workbench / app / controllers / actions_controller.rb
index 9f2cfb09f3da31ecb6953b5e5a3e915b212d757f..d1dc0fca354b7969d77317ec161a58d5f245ea62 100644 (file)
@@ -11,13 +11,15 @@ class ActionsController < ApplicationController
   end
 
   def show
-    @object = model_class.find(params[:uuid])
+    @object = model_class.andand.find(params[:uuid])
     if @object.is_a? Link and
         @object.link_class == 'name' and
         ArvadosBase::resource_class_for_uuid(@object.head_uuid) == Collection
       redirect_to collection_path(id: @object.uuid)
-    else
+    elsif @object
       redirect_to @object
+    else
+      raise ActiveRecord::RecordNotFound
     end
   end