Commit 00eef517 authored by Mark Harding's avatar Mark Harding

(fix): do not show appeal review if not loggedin

parent a8f2ccf4
No related merge requests found
Pipeline #107263760 running with stages
......@@ -16,6 +16,13 @@ class appeals implements Interfaces\Api
{
public function get($pages)
{
if (!Core\Session::isLoggedIn()) {
return Factory::response([
'status' => 'error',
'message' => 'You must be loggedin',
]);
}
if ($_POST['offset']) {
return Factory::response([ ]);
}
......
Please register or to comment