Fix api path

This commit is contained in:
Dennis Eichhorn 2019-03-09 23:20:17 +01:00
parent 2e0d1af3f4
commit bee2aaddce

View File

@ -7,7 +7,7 @@ The tool to protect clients from CSRF is a randomly generated CSRF token, that c
Example usage:
```html
<form action="<?= UriFactory::build('/{/lang}/api/path?csrf={$CSRF}')" ...>
<form action="<?= UriFactory::build('{/api}path?csrf={$CSRF}')" ...>
...
</form>
```