diff options
-rw-r--r-- | lib/api/helpers/full_route_builder.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/helpers/full_route_builder.rb b/lib/api/helpers/full_route_builder.rb index 1afa1fc8249..bda160f671c 100644 --- a/lib/api/helpers/full_route_builder.rb +++ b/lib/api/helpers/full_route_builder.rb @@ -7,7 +7,7 @@ module API def self.full_url(api_route_name, params) return unless instance.respond_to? api_route_name - instance.expose_url(instance.send(api_route_name, params)) + instance.expose_url(instance.send(api_route_name, params)) # rubocop:disable GitlabSecurity/PublicSend end end end |