mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
13 lines
336 B
Markdown
13 lines
336 B
Markdown
|
## Configuring user profiles
|
||
|
|
||
|
This module ships with User Profiles enabled by default.
|
||
|
|
||
|
If you'd prefer to disable this functionality and instead return a 404 for the `/profile/` page, you can do so using SilverStripe config.
|
||
|
|
||
|
In mysite/_config/settings.yml
|
||
|
|
||
|
```yaml
|
||
|
SilverStripe\Blog\Model\BlogController:
|
||
|
disable_profiles: true
|
||
|
```
|