redirect to allocation tab when created
This commit is contained in:
parent
abac9b506b
commit
723e34a784
2 changed files with 4 additions and 2 deletions
|
@ -10,6 +10,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
|
|||
|
||||
### Changed
|
||||
* Prevent clicking server start button until server is completely off, not just stopping.
|
||||
* Upon successful creation of a node it will redirect to the allocation tab and display a clearer message to add allocations.
|
||||
|
||||
### Fixed
|
||||
* Team Fortress named 'Insurgency' in panel in database seeder. ([#96](https://github.com/Pterodactyl/Panel/issues/96), PR by [@MeltedLux](https://github.com/MeltedLux))
|
||||
|
|
|
@ -77,9 +77,10 @@ class NodesController extends Controller
|
|||
$new = $node->create($request->except([
|
||||
'_token'
|
||||
]));
|
||||
Alert::success('Successfully created new node. You should allocate some IP addresses to it now.')->flash();
|
||||
Alert::success('Successfully created new node. <strong>Before you can add any servers you need to first assign some IP addresses and ports.</strong>')->flash();
|
||||
return redirect()->route('admin.nodes.view', [
|
||||
'id' => $new
|
||||
'id' => $new,
|
||||
'tab' => 'tab_allocation'
|
||||
]);
|
||||
} catch (DisplayValidationException $e) {
|
||||
return redirect()->route('admin.nodes.new')->withErrors(json_decode($e->getMessage()))->withInput();
|
||||
|
|
Loading…
Reference in a new issue