Add Startup Params view

Translations might be the end of us.
This commit is contained in:
Dane Everitt 2017-01-17 19:30:27 -05:00
parent ffa1e46cec
commit f6600f447f
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
8 changed files with 186 additions and 15 deletions

View file

@ -65,8 +65,12 @@ class ServerRoutes
'uses' => 'Server\ServerController@postSettingsSFTP',
]);
$router->post('/settings/startup', [
$router->get('/settings/startup', [
'as' => 'server.settings.startup',
'uses' => 'Server\ServerController@getStartup',
]);
$router->post('/settings/startup', [
'uses' => 'Server\ServerController@postSettingsStartup',
]);