Skip to content

Commit ceb17f6

Browse files
authored
Add disclaimer to not use Masterkey on client side (#474)
* Add disclaimer to not use Masterkey on client side
1 parent 65b5a48 commit ceb17f6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/dart/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ It's possible to add other parameters to work with your instance of Parse Server
5757
securityContext: securityContext, // Again, required for some setups
5858
coreStore: CoreStoreMemoryImp()); // Non persistent mode (default): Sdk will store everything in memmore instead of using Sembast as an internal DB.
5959
```
60-
60+
⚠️ 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.
6161

6262
#### Early Web support
6363
Currently this requires adding `X-Parse-Installation-Id` as an allowed header to parse-server.

packages/flutter/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ It's possible to add other parameters to work with your instance of Parse Server
5252
coreStore: await CoreStoreSharedPrefsImp.getInstance()); // Local data storage method. Will use SharedPreferences instead of Sembast as an internal DB
5353
```
5454

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

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

0 commit comments

Comments
 (0)