Testing of csrf

This commit is contained in:
Dillon
2023-06-04 21:02:13 +08:00
parent 5cab357805
commit 81b5fc5eb6
+3 -3
View File
@@ -603,6 +603,6 @@ Route::get('/upload-honey-trap', function () {
})->name('upload_honey_trap');
Route::get('aws-image-upload', 'AWS\AWSImageUploadController@imageUpload')->name('aws.image.upload');
Route::post('aws-image-upload/upload', 'AWS\AWSImageUploadController@imageUploadPost')->name('aws.image.upload.post');
Route::get('aws-image/{filename}', 'AWS\AWSImageUploadController@displayImage')->name('aws.image.displayImage');
Route::get('/aws-image-upload', 'AWS\AWSImageUploadController@imageUpload')->name('aws.image.upload');
Route::post('/aws-image-upload/upload', 'AWS\AWSImageUploadController@imageUploadPost')->name('aws.image.upload.post');
Route::get('/aws-image/{filename}', 'AWS\AWSImageUploadController@displayImage')->name('aws.image.displayImage');