Skip to content

Add disclaimer to not use Masterkey on client side #474

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/dart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ It's possible to add other parameters to work with your instance of Parse Server
securityContext: securityContext, // Again, required for some setups
coreStore: CoreStoreMemoryImp()); // Non persistent mode (default): Sdk will store everything in memmore instead of using Sembast as an internal DB.
```

⚠️ Please note that the master key should only be used in safe environments and never on client side ‼️ Using this package on a server should be fine.

#### Early Web support
Currently this requires adding `X-Parse-Installation-Id` as an allowed header to parse-server.
Expand Down
1 change: 1 addition & 0 deletions packages/flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ It's possible to add other parameters to work with your instance of Parse Server
coreStore: await CoreStoreSharedPrefsImp.getInstance()); // Local data storage method. Will use SharedPreferences instead of Sembast as an internal DB
```

⚠️ Please note that the master key should only be used in safe environments and never on client side ‼️

#### Web support
Due to Cross-origin resource sharing (CORS) restrictions, this requires adding `X-Parse-Installation-Id` as an allowed header to parse-server.
Expand Down