Allow proxy authenticated user access to pre-created repo

We have below settings in app.ini, as part of initialisation, we have an entrypoint script which creates admin user and add admin user to Owner team to be able to view default organisation.

[service]
DEFAULT_ALLOW_CREATE_ORGANIZATION = false
ENABLE_REVERSE_PROXY_AUTHENTICATION = true
ENABLE_REVERSE_PROXY_EMAIL = true
ENABLE_REVERSE_PROXY_FULL_NAME = true
ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = true

# Setting custom headers received from apache proxy which will be treated as email address and username resp.
[security]
REVERSE_PROXY_AUTHENTICATION_USER = X-WEBAUTH-USER-GITEA
REVERSE_PROXY_AUTHENTICATION_EMAIL = X-WEBAUTH-EMAIL-GITEA
REVERSE_PROXY_AUTHENTICATION_FULL_NAME  = X-WEBAUTH-FULLNAME-GITEA

We create a repo using POST /api/v1/orgs/$CUSTOMER_ID/repos and want regular (non-admin) users to be able to have read access to the repo created by admin during initialisation when they login.
Please can you let me know if there is setting which can be enabled in order to allow regular users access pre-created repo with “read” access.