Ensure permissions can be propagated via group owner_uuid attribute.
[arvados.git] / services / api / app / controllers / static_controller.rb
index 9fbf80687d9adff03bab2e3ffe7b35eca8f13638..ba69b8464f7407a4e1b1473a99c506b0a86c596d 100644 (file)
@@ -1,10 +1,12 @@
 class StaticController < ApplicationController
+  respond_to :json, :html
 
   skip_before_filter :find_object_by_uuid
+  skip_before_filter :render_404_if_no_object
   skip_before_filter :require_auth_scope_all, :only => [ :home, :login_failure ]
 
   def home
-    render 'intro'
+    redirect_to Rails.configuration.workbench_address
   end
 
 end