X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/12b5d95d9d4f062539c3d7d7ac8dd5421dd6b6b0..257d60253246952b435cea23b1912af80ea2c6d6:/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb diff --git a/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb b/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb index 5229d80b0c..76acc701fd 100644 --- a/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb +++ b/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb @@ -1,8 +1,9 @@ class Arvados::V1::ApiClientAuthorizationsController < ApplicationController accept_attribute_as_json :scopes, Array - before_filter :current_api_client_is_trusted + before_filter :current_api_client_is_trusted, :except => [:current] before_filter :admin_required, :only => :create_system_auth - skip_before_filter :render_404_if_no_object, :only => :create_system_auth + skip_before_filter :render_404_if_no_object, :only => [:create_system_auth, :current] + skip_before_filter :find_object_by_uuid, :only => [:create_system_auth, :current] def self._create_system_auth_requires_parameters { @@ -40,6 +41,11 @@ class Arvados::V1::ApiClientAuthorizationsController < ApplicationController super end + def current + @object = Thread.current[:api_client_authorization] + show + end + protected def default_orders