Commit 4dbfa14e authored by Timothy Andrew's avatar Timothy Andrew

Implement review comments from @dbalexandre for !12300.

parent 1b8223dd
......@@ -30,15 +30,13 @@ module API
# endpoint class. If this method is called multiple times on the same class,
# the scopes are all aggregated.
def allow_access_with_scope(scopes, options = {})
@scopes ||= []
params = Array.wrap(scopes).map { |scope| { name: scope, if: options[:if] } }
@scopes.concat(params)
Array(scopes).each do |scope|
allowed_scopes << { name: scope, if: options[:if] }
end
end
def scopes
@scopes
def allowed_scopes
@scopes ||= []
end
end
......
......@@ -416,8 +416,8 @@ module API
begin
endpoint_classes = [options[:for].presence, ::API::API].compact
endpoint_classes.reduce([]) do |memo, endpoint|
if endpoint.respond_to?(:scopes)
memo.concat(endpoint.scopes)
if endpoint.respond_to?(:allowed_scopes)
memo.concat(endpoint.allowed_scopes)
else
memo
end
......
......@@ -41,7 +41,6 @@ describe AccessTokenValidationService, services: true do
end
context "conditions" do
context "if" do
it "ignores any scopes whose `if` condition returns false" do
token = double("token", scopes: [:api, :read_user])
......@@ -61,5 +60,4 @@ describe AccessTokenValidationService, services: true do
end
end
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment