forked from miguel456/rbrecruiter
Recent changes
This commit is contained in:
5
routes/web.php
Normal file → Executable file
5
routes/web.php
Normal file → Executable file
@@ -88,16 +88,21 @@ Route::group(['prefix' => LaravelLocalization::setLocale(), 'middleware' => ['lo
|
||||
->name('processInvite');
|
||||
|
||||
|
||||
|
||||
Route::get('team/files', [TeamFileController::class, 'index'])
|
||||
->name('showTeamFiles');
|
||||
|
||||
Route::post('team/files/upload', [TeamFileController::class, 'store'])
|
||||
->name('uploadTeamFile');
|
||||
|
||||
Route::delete('team/files/{teamFile}/delete', [TeamFileController::class, 'destroy'])
|
||||
->name('deleteTeamFile');
|
||||
|
||||
Route::get('team/files/{teamFile}/download', [TeamFileController::class, 'download'])
|
||||
->name('downloadTeamFile');
|
||||
|
||||
|
||||
|
||||
Route::group(['prefix' => '/applications'], function () {
|
||||
Route::get('/my-applications', [ApplicationController::class, 'showUserApps'])
|
||||
->name('showUserApps')
|
||||
|
Reference in New Issue
Block a user