Merge branch 'develop' into feature/PTDL-472

This commit is contained in:
Dane Everitt
2017-07-01 12:33:30 -05:00
20 changed files with 633 additions and 463 deletions

View File

@@ -76,7 +76,7 @@ class DaemonAuthenticate
$node = Node::where('daemonSecret', $request->header('X-Access-Node'))->first();
if (! $node) {
return abort(404);
return abort(401);
}
return $next($request);