Updates the application settings of a NocoDB server via its
POST /api/v1/app-settings
API endpoint.
Usage
update_app_settings(
invite_only_signup = NULL,
hostname = pal::pkg_config_val("hostname"),
email = pal::pkg_config_val("email", require = TRUE),
password = pal::pkg_config_val("password", require = TRUE),
quiet = FALSE
)
Arguments
- invite_only_signup
Whether or not to restrict sign-up of new NocoDB users to invitees only.
- hostname
NocoDB server hostname. A character scalar.
E-mail address of the NocoDB user to authenticate with.
- password
Password of the NocoDB user to authenticate with.
- quiet
Whether or not to suppress printing status output from internal processing.
Details
This API endpoint does not support authentication via API tokens.
Only the super admin user is allowed to use this API endpoint, i.e. the provided credentials must belong to them.
See also
Other functions to manage NocoDB's application settings:
app_settings()