Change AUTHORIZED_FETCH to not block unauthenticated REST API access (#19803)

New environment variable `DISALLOW_UNAUTHENTICATED_API_ACCESS`
This commit is contained in:
Eugen Rochko 2022-11-05 22:56:03 +01:00 committed by GitHub
parent 4c6f7ee8ca
commit b38a465476

View file

@ -133,7 +133,7 @@ class Api::BaseController < ApplicationController
end end
def disallow_unauthenticated_api_access? def disallow_unauthenticated_api_access?
authorized_fetch_mode? ENV['DISALLOW_UNAUTHENTICATED_API_ACCESS'] == 'true' || Rails.configuration.x.whitelist_mode
end end
private private