identity-vault/app/helpers/api/v1/application_helper.rb
2025-09-02 13:53:47 -04:00

6 lines
125 B
Ruby

module API::V1::ApplicationHelper
def scope(scope, &)
return unless current_scopes.include?(scope)
yield
end
end