Skip to content

Commit 4e5e4c6

Browse files
committed
docs: make file paths bold
1 parent e081974 commit 4e5e4c6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/customization.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $routes->get('register', '\App\Controllers\Auth\RegisterController::registerView
3131

3232
### Customize Login Redirect
3333

34-
You can customize where a user is redirected to on login with the `loginRedirect()` method of the `app/Config/Auth.php` config file. This is handy if you want to redirect based on user group or other criteria.
34+
You can customize where a user is redirected to on login with the `loginRedirect()` method of the **app/Config/Auth.php** config file. This is handy if you want to redirect based on user group or other criteria.
3535

3636
```php
3737
public function loginRedirect(): string
@@ -46,7 +46,7 @@ public function loginRedirect(): string
4646

4747
Oftentimes, you will want to have different redirects for different user groups. A simple example
4848
might be that you want admins redirected to `/admin` while all other groups redirect to `/`.
49-
The `app/Config/Auth.php` config file also includes methods that you can add additional logic to in order to
49+
The **app/Config/Auth.php** config file also includes methods that you can add additional logic to in order to
5050
achieve this:
5151

5252
```php
@@ -64,7 +64,7 @@ public function loginRedirect(): string
6464

6565
### Customize Register Redirect
6666

67-
You can customize where a user is redirected to after registration in the `registerRedirect()` method of the `app/Config/Auth.php` config file.
67+
You can customize where a user is redirected to after registration in the `registerRedirect()` method of the **app/Config/Auth.php** config file.
6868

6969
```php
7070
public function registerRedirect(): string
@@ -77,7 +77,7 @@ public function registerRedirect(): string
7777

7878
### Customize Logout Redirect
7979

80-
The logout redirect can also be overridden by the `logoutRedirect()` method of the `app/Config/Auth.php` config file. This will not be used as often as login and register, but you might find the need. For example, if you programatically logged a user out you might want to take them to a page that specifies why they were logged out. Otherwise, you might take them to the home page or even the login page.
80+
The logout redirect can also be overridden by the `logoutRedirect()` method of the **app/Config/Auth.php** config file. This will not be used as often as login and register, but you might find the need. For example, if you programatically logged a user out you might want to take them to a page that specifies why they were logged out. Otherwise, you might take them to the home page or even the login page.
8181

8282
```php
8383
public function logoutRedirect(): string

0 commit comments

Comments
 (0)