Skip to content
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

Fix broken links to old user guide #29

Merged
merged 1 commit into from
Mar 18, 2019
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ within the `$views` variable:
];

NOTE: If you're not familiar with how views can be namespaced in CodeIgniter, please refer to
[the user guide](https://bcit-ci.github.io/CodeIgniter4/general/modules.html) for CI4's
[the user guide](https://codeigniter4.github.io/CodeIgniter4/general/modules.html) for CI4's
Code Module support.

## Services
Expand Down Expand Up @@ -125,7 +125,7 @@ Now you can use `strong_password` in any set of rules for validation:

## Users

Myth:Auth uses [CodeIgniter Entities](https://bcit-ci.github.io/CodeIgniter4/database/entities.html)
Myth:Auth uses [CodeIgniter Entities](https://codeigniter4.github.io/CodeIgniter4/models/entities.html)
for it's User object, and your application must also use that class. This class
provides automatic password hashing as well as utility methods for banning/un-banning, password
reset hash generation, and more.
Expand All @@ -137,7 +137,7 @@ or modify it as needed.
## Restricting by Route

If you specify each of your routes within the `application/Config/Routes.php` file, you can restrict access
to users by group/role or permission with [Controller Filters](https://bcit-ci.github.io/CodeIgniter4/general/filters.html).
to users by group/role or permission with [Controller Filters](https://codeigniter4.github.io/CodeIgniter4/incoming/filters.html).

First, edit `application/Config/Filters.php` and add the following `role` and `permission` entries to the
`aliases` property::
Expand Down