Add save & update functionality to positions
Tooltips also added, as well as a general configuration file for Mojang Status URL. Relationships were also added between forms and Vacancies. Status verification for the dashboard was moved to a Service Provider, where it adds log entries when cache expires. Authentication controllers were also updated to reflect the new dashboard URL.
This commit is contained in:
@@ -65,7 +65,16 @@ Route::group(['middleware' => 'auth'], function(){
|
||||
|
||||
Route::group(['prefix' => 'admin'], function (){
|
||||
|
||||
Route::resource('positions', 'VacancyController');
|
||||
Route::get('positions', 'VacancyController@index')
|
||||
->name('showPositions');
|
||||
|
||||
Route::post('positions/save', 'VacancyController@store')
|
||||
->name('savePosition');
|
||||
|
||||
|
||||
Route::patch('positions/availability/{status}/{id}', 'VacancyController@updatePositionAvailability')
|
||||
->name('updatePositionAvailability');
|
||||
|
||||
|
||||
Route::get('forms/builder', 'FormController@showFormBuilder')
|
||||
->name('showFormBuilder');
|
||||
|
Reference in New Issue
Block a user