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 ...@@ -30,15 +30,13 @@ module API
# endpoint class. If this method is called multiple times on the same class, # endpoint class. If this method is called multiple times on the same class,
# the scopes are all aggregated. # the scopes are all aggregated.
def allow_access_with_scope(scopes, options = {}) def allow_access_with_scope(scopes, options = {})
@scopes ||= [] Array(scopes).each do |scope|
allowed_scopes << { name: scope, if: options[:if] }
params = Array.wrap(scopes).map { |scope| { name: scope, if: options[:if] } } end
@scopes.concat(params)
end end
def scopes def allowed_scopes
@scopes @scopes ||= []
end end
end end
......
...@@ -416,8 +416,8 @@ module API ...@@ -416,8 +416,8 @@ module API
begin begin
endpoint_classes = [options[:for].presence, ::API::API].compact endpoint_classes = [options[:for].presence, ::API::API].compact
endpoint_classes.reduce([]) do |memo, endpoint| endpoint_classes.reduce([]) do |memo, endpoint|
if endpoint.respond_to?(:scopes) if endpoint.respond_to?(:allowed_scopes)
memo.concat(endpoint.scopes) memo.concat(endpoint.allowed_scopes)
else else
memo memo
end end
......
...@@ -41,7 +41,6 @@ describe AccessTokenValidationService, services: true do ...@@ -41,7 +41,6 @@ describe AccessTokenValidationService, services: true do
end end
context "conditions" do context "conditions" do
context "if" do
it "ignores any scopes whose `if` condition returns false" do it "ignores any scopes whose `if` condition returns false" do
token = double("token", scopes: [:api, :read_user]) token = double("token", scopes: [:api, :read_user])
...@@ -61,5 +60,4 @@ describe AccessTokenValidationService, services: true do ...@@ -61,5 +60,4 @@ describe AccessTokenValidationService, services: true do
end end
end end
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