Skip to content

Commit

Permalink
Lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
ok200paul authored and github-actions[bot] committed Aug 16, 2024
1 parent 13f4da2 commit d90be2b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

use App\Http\Controllers\ProfileController;
use App\Http\Middleware\CheckAdminStatus;
use App\Http\Middleware\CheckTeamToken;
use Illuminate\Support\Facades\Redirect;
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
Expand All @@ -21,12 +20,10 @@

Route::middleware('auth')->group(function () {


Route::get('/my-team', function () {
return Inertia::render('App/MyTeam');
})->name('my-team');


Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit');
Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update');
Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy');
Expand Down

0 comments on commit d90be2b

Please sign in to comment.