Skip to content

Commit d008eca

Browse files
authored
fix: flutter svg icon and flutter document and php api path (#930)
1 parent 5465970 commit d008eca

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ apis:
2121
osx: https://parseplatform.org/Parse-SDK-iOS-OSX/api/
2222
android: https://parseplatform.org/Parse-SDK-Android/api/
2323
js: https://parseplatform.org/Parse-SDK-JS/api/master/
24-
php: https://parseplatform.org/parse-php-sdk/namespaces/Parse.html
24+
php: https://parseplatform.org/parse-php-sdk/
2525
dotnet: https://parseplatform.org/Parse-SDK-dotNET/api/
26-
flutter: https://parseplatform.org/Parse-SDK-Flutter/api/
26+
flutter: flutter/api/
2727
parse-server: https://parseplatform.org/parse-server/api/
2828

2929
# Build settings

_includes/flutter/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ await Parse().initialize(
3737

3838
⚠️ The master key should only be used in safe environments and never on client side. Using this package on a server should be fine.
3939

40-
### Early Web Support
40+
## Early Web Support
4141

4242
Due to Cross-Origin Resource Sharing (CORS) restrictions, web support requires adding `X-Parse-Installation-Id` as an allowed header in the Parse Server configuration:
4343

4444
- When running directly via docker, set the env var `PARSE_SERVER_ALLOW_HEADERS=X-Parse-Installation-Id`.
4545
- When running via express, set the [Parse Server option](https://parseplatform.org/parse-server/api/master/ParseServerOptions.html) `allowHeaders: ['X-Parse-Installation-Id']`.
4646

47-
### Desktop Support (macOS)
47+
## Desktop Support (macOS)
4848

4949
The security entitlements posed by the macOS framework require that your app is granted permission to open outgoing network connections, so that the Parse Flutter SDK can communicate with Parse Server. To grant this permission, add the following code:
5050

@@ -60,7 +60,7 @@ to the following files:
6060
/macOS/Runner/DebugProfile.entitlements
6161
```
6262

63-
### Network client
63+
## Network client
6464

6565
By default, this SDK uses the `ParseHTTPClient`. Another option is use `ParseDioClient`. This client supports the most features (for example a progress callback at the file upload), but a benchmark has shown that dio is slower than http on web.
6666

_includes/flutter/queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if (dietPlan.success) {
2424
}
2525
```
2626

27-
### Alternative Query Methods
27+
## Alternative Query Methods
2828

2929
The standard query method `query()` returns a `ParseResponse` that contains the result or the error. As an alternative, you can also use `Future<List<T>> find()` for receiving options.
3030
This method returns an `Future` that either resolves in an error (equivalent to the error in the `ParseResponse`) or an `List` containing the queried objects. One difference, you should be aware of, is the fact that `Future<List<T>> find()` will return an empty list instead of the `No results` error you receive in case no object matches your query.

assets/symbols.svg

Lines changed: 4 additions & 0 deletions
Loading

flutter-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ layout: redirected
33
sitemap: false
44
permalink: /flutter/api/
55
redirect_to:
6-
- https://pub.dev/documentation/parse_server_sdk/latest/
6+
- https://pub.dev/documentation/parse_server_sdk_flutter/latest/
77
---

php-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ layout: redirected
33
sitemap: false
44
permalink: /php/api/
55
redirect_to:
6-
- https://parse-community.github.io/parse-php-sdk/namespaces/Parse.html
6+
- https://parse-community.github.io/parse-php-sdk/
77
---

php.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ layout: guide
55
platform: php
66
language: php
77
display_platform: PHP
8-
api_reference: https://parse-community.github.io/parse-php-sdk/namespaces/Parse.html
8+
api_reference: https://parse-community.github.io/parse-php-sdk/
99

1010
sections:
1111
- "php/getting-started.md"

0 commit comments

Comments
 (0)