Started building update functions out

This commit is contained in:
Henry Whitaker
2020-04-10 01:13:34 +01:00
parent 714daae571
commit dac08458d4
9 changed files with 66 additions and 16 deletions

View File

@@ -37,3 +37,11 @@ Route::group([
Route::post('restore', 'BackupController@restore')
->name('data.restore');
});
Route::group([
'middleware' => 'api',
'prefix' => 'update',
], function () {
Route::get('check', 'UpdateController@checkForUpdate')
->name('update.check');
});