Merge branch 'develop' into feature/PTDL-472

This commit is contained in:
Dane Everitt 2017-07-01 12:33:30 -05:00
commit 2f4ec64f2a
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
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);