You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: admin/getting-started.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
If you use the [API Platform Distribution](../distribution/), API Platform Admin is already installed, you can skip this installation guide.
6
6
7
-
Otherwise, all you need to install API Platform Admin is a JavaScript package manager. We recommend [Yarn](https://yarnpkg.com/) ([NPM](https://www.npmjs.com/) is also supported).
7
+
Otherwise, all you need to install API Platform Admin is a JavaScript package manager. We recommend [Yarn](https://yarnpkg.com/) ([npm](https://www.npmjs.com/) is also supported).
8
8
9
9
If you don't have an existing React Application, create one using [Create React App](https://create-react-app.dev/):
Copy file name to clipboardExpand all lines: client-generator/typescript.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Typescript Interfaces
1
+
# TypeScript Interfaces
2
2
3
3
The TypeScript Generator allows you to create [TypeScript interfaces](https://www.typescriptlang.org/docs/handbook/interfaces.html) that you can embed in any TypeScript-enabled project (React, Vue.js, Angular..)
Copy file name to clipboardExpand all lines: core/data-persisters.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ classes called **data persisters**. Data persisters receive an instance of the c
5
5
the `@ApiResource` annotation). This instance contains data submitted by the client during [the deserialization
6
6
process](serialization.md).
7
7
8
-
A data persister using [Doctrine ORM](http://www.doctrine-project.org/projects/orm.html) is included with the library and
8
+
A data persister using [Doctrine ORM](https://www.doctrine-project.org/projects/orm.html) is included with the library and
9
9
is enabled by default. It is able to persist and delete objects that are also mapped as [Doctrine entities](https://www.doctrine-project.org/projects/doctrine-orm/en/current/reference/basic-mapping.html).
10
10
A [Doctrine MongoDB ODM](https://www.doctrine-project.org/projects/mongodb-odm.html) data persister is also included and can be enabled by following the [MongoDB documentation](mongodb.md).
Copy file name to clipboardExpand all lines: core/deprecations.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -129,7 +129,7 @@ class Parchment
129
129
}
130
130
```
131
131
132
-
The value of the `sunset` attribute can be any string compatible with [the `\DateTime` constructor](http://php.net/manual/en/datetime.construct.php).
132
+
The value of the `sunset` attribute can be any string compatible with [the `\DateTime` constructor](https://www.php.net/manual/en/datetime.construct.php).
133
133
It will be automatically converted to a valid HTTP date.
134
134
135
135
It's also possible to set the `Sunset` header only for a specific [operation](operations.md):
Copy file name to clipboardExpand all lines: core/design.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ Last but not least, to create [Event Sourcing](https://martinfowler.com/eaaDev/E
46
46
approach is:
47
47
48
48
* to persist data in an event store using a Messenger handler or a custom [data persister](data-persisters.md)
49
-
* to create projections in standard RDBMS (Postgres, MariaDB...) tables or views
49
+
* to create projections in standard RDBMS (PostgreSQL, MariaDB...) tables or views
50
50
* to map those projections with read-only Doctrine entity classes **and** to mark those classes with `@ApiResource`
51
51
52
52
You can then benefit from the built-in Doctrine filters, sorting, pagination, auto-joins and all of [the extension points](extending.md) provided by API Platform.
Copy file name to clipboardExpand all lines: core/errors.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
API Platform comes with a powerful error system. It handles expected (such as faulty JSON documents sent by the
4
4
client or validation errors) as well as unexpected errors (PHP exceptions and errors).
5
5
API Platform automatically sends the appropriate HTTP status code to the client: `400` for expected errors, `500` for
6
-
unexpected ones. It also provides a description of the error in [the Hydra error format](http://www.hydra-cg.com/spec/latest/core/#description-of-http-status-codes-and-errors)
6
+
unexpected ones. It also provides a description of the error in [the Hydra error format](https://www.hydra-cg.com/spec/latest/core/#description-of-http-status-codes-and-errors)
7
7
or in the format described in the [RFC 7807](https://tools.ietf.org/html/rfc7807), depending of the format selected during the [content negotiation](content-negotiation.md).
0 commit comments