If a GET fails while looking up a friendly name, skip the hyperlink
[arvados.git] / services / api / app / controllers / static_controller.rb
1 class StaticController < ApplicationController
2
3   skip_before_filter :find_object_by_uuid
4   skip_before_filter :require_auth_scope_all, :only => [ :home, :login_failure ]
5
6   def home
7     redirect_to Rails.configuration.workbench_address
8   end
9
10 end