I am trying to override the share configuration that is loaded from enterprise-config.xml
If I am not wrong, it is not possible to do it using the usual extension in share-config-custom.xml. I tried to set the flag to false:
<config evaluator="string-compare" condition="Users" replace="true"><users><!-- minimum length for username and password --><username-min-length>2</username-min-length><password-min-length>3</password-min-length><show-authorization-status>false</show-authorization-status></users></config>
The problem is that this configuration is already overridden in enterprise-config.xml and cannot be overridden again.
In our environments we do not have any limit on the number of users and we would prefer to hide everything related to authorization.
—