1
0
mirror of https://github.com/flarum/core.git synced 2025-10-12 15:34:26 +02:00

401 for unauthorised request to settings, notifications page fixes #714

This commit is contained in:
Sajjad Hasehmian
2016-02-10 14:22:41 +03:30
parent 89598646c1
commit e90dfe04fd
2 changed files with 32 additions and 2 deletions

View File

@@ -80,13 +80,13 @@ class ForumServiceProvider extends AbstractServiceProvider
$routes->get(
'/settings',
'settings',
$toController('Flarum\Forum\Controller\ClientController')
$toController('Flarum\Forum\Controller\AuthorizedClientController')
);
$routes->get(
'/notifications',
'notifications',
$toController('Flarum\Forum\Controller\ClientController')
$toController('Flarum\Forum\Controller\AuthorizedClientController')
);
$routes->get(