Push pack services and fix for failing tests

This commit is contained in:
Dane Everitt
2017-08-20 19:23:50 -05:00
parent 280633b28a
commit cdfbc60030
21 changed files with 415 additions and 378 deletions

View File

@@ -174,6 +174,8 @@ class NodesController extends Controller
*
* @param int $node
* @return \Illuminate\View\View
*
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function viewIndex($node)
{
@@ -213,6 +215,8 @@ class NodesController extends Controller
*
* @param int $node
* @return \Illuminate\View\View
*
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function viewAllocation($node)
{
@@ -227,6 +231,8 @@ class NodesController extends Controller
*
* @param int $node
* @return \Illuminate\View\View
*
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function viewServers($node)
{
@@ -299,9 +305,10 @@ class NodesController extends Controller
* Sets an alias for a specific allocation on a node.
*
* @param \Pterodactyl\Http\Requests\Admin\Node\AllocationAliasFormRequest $request
* @return \Illuminate\Contracts\Routing\ResponseFactory|\Symfony\Component\HttpFoundation\Response
* @return \Symfony\Component\HttpFoundation\Response
*
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function allocationSetAlias(AllocationAliasFormRequest $request)
{