Fix: SpaceController::actionHome throws 403 Http error for guests

This commit is contained in:
buddh4 2018-11-21 14:46:37 +01:00
parent 2b911c63d5
commit 5f24f6e3cc
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ HumHub Change Log
- Fix #3359: Weekly summary e-mails are not sent in default configuration
- Fix #3365: Legacy richtext emojis not parsed in richtext preview
- Fix: Friendship button adds additional spaces
- Fix: SpaceController::actionHome throws 403 Http error for guests
1.3.7 (October 23, 2018)

View File

@ -43,7 +43,7 @@ class SpaceController extends ContentContainerController
return [
'acl' => [
'class' => AccessControl::class,
'guestAllowedActions' => ['index', 'stream']
'guestAllowedActions' => ['index', 'home', 'stream']
]
];
}