Fix documentation

This commit is contained in:
Javier Goizueta
2017-03-22 17:01:03 +01:00
parent e850d5c72e
commit 41c5271de1

View File

@@ -78,7 +78,7 @@ The result is a JSON object with the configuration (`period` and `limit` attribu
Thes functions are not accessible by regular user roles, and the user and organization names must be provided as parameters.
### cdb_dataservices_server.cdb_service_set_user_rate_limit(username, orgname, service, rate_limit)
### cdb_dataservices_client.cdb_service_set_user_rate_limit(username, orgname, service, rate_limit)
This function sets the rate limit configuration for the user. This overrides any other configuration.
@@ -88,7 +88,7 @@ The configuration is provided as a JSON literal. To remove the user-level config
This functions doesn't return any value.
### cdb_dataservices_server.cdb_service_set_org_rate_limit(username, orgname, service, rate_limit)
### cdb_dataservices_client.cdb_service_set_org_rate_limit(username, orgname, service, rate_limit)
This function sets the rate limit configuration for the organization.
This overrides server level configuration and is overriden by user configuration if present.
@@ -99,7 +99,7 @@ The configuration is provided as a JSON literal. To remove the organization-leve
This functions doesn't return any value.
### cdb_dataservices_server.cdb_service_set_server_rate_limit(username, orgname, service, rate_limit)
### cdb_dataservices_client.cdb_service_set_server_rate_limit(username, orgname, service, rate_limit)
This function sets the default rate limit configuration for all users accesing the dataservices server. This is overriden by organization of user configuration.