Skip to content

Commit

Permalink
remove testing route
Browse files Browse the repository at this point in the history
  • Loading branch information
edalzell committed Aug 30, 2021
1 parent aee327b commit 1b8f51b
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions routes/actions.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
<?php

use App\Http\Middleware\VerifyCsrfToken;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
use TransformStudios\Uptime\Http\Controllers\WebhookController;

Route::post('webhook', [WebhookController::class, '__invoke'])
->withoutMiddleware(VerifyCsrfToken::class)
->name('uptime.webhook');

Route::get('test', function(Request $request) {
// abort(500);
return response()->noContent();
})
->name('uptime.test');

0 comments on commit 1b8f51b

Please sign in to comment.