Make logging in mandatory.

This commit is contained in:
2016-09-02 11:16:01 +02:00
parent bfcbe5aa2e
commit 3587447cc0
8 changed files with 60 additions and 57 deletions

View File

@@ -10,8 +10,8 @@ class ProvideAutoSuggest extends JSONController
{
public function __construct()
{
// Ensure it's just admins at this point.
if (!Registry::get('user')->isAdmin())
// Ensure we're logged in at this point.
if (!Registry::get('user')->isLoggedIn())
throw new NotAllowedException();
if (!isset($_GET['type']))