adds ability to disable anonymous users

This commit is contained in:
Florent Vilmart
2016-02-15 22:44:41 -05:00
parent 2570899272
commit c0bd5d2036
5 changed files with 25 additions and 4 deletions

View File

@@ -41,7 +41,7 @@ The client keys used with Parse are no longer necessary with parse-server. If y
* filesAdapter - The default behavior (GridStore) can be changed by creating an adapter class (see [`FilesAdapter.js`](https://github.com/ParsePlatform/parse-server/blob/master/src/Adapters/Files/FilesAdapter.js))
* databaseAdapter (unfinished) - The backing store can be changed by creating an adapter class (see `DatabaseAdapter.js`)
* loggerAdapter - The default behavior/transport (File) can be changed by creating an adapter class (see [`LoggerAdapter.js`](https://github.com/ParsePlatform/parse-server/blob/master/src/Adapters/Logger/LoggerAdapter.js))
* enableAnonymousUsers - Defaults to true. Set to false to disable anonymous users.
---
### Usage