Skip to content

docs: fix protect all url with $globals #443

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 3 commits into from
Sep 18, 2022
Merged
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
10 changes: 7 additions & 3 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,15 @@ These can be used in any of the [normal filter config settings](https://codeigni

### Protect All Pages

If you want to limit all routes (e.g. `localhost:8080/admin`, `localhost:8080/panel` and ...), you need to add the following code in the `app\Config\Filters.php` file.
If you want to limit all routes (e.g. `localhost:8080/admin`, `localhost:8080/panel` and ...), you need to add the following code in the `app/Config/Filters.php` file.

```php
public $filters = [
'session' => ['except' => ['login*', 'register*']],
public $globals = [
'before' => [
// ...
'session' => ['except' => ['login*', 'register*']],
],
// ...
];
```

Expand Down