add tags to posts

This commit is contained in:
yuriko 🦊 2025-05-24 22:01:27 -04:00
parent 2f95117389
commit c77c97be2d
5 changed files with 26 additions and 3 deletions

View file

@ -41,6 +41,7 @@ Route::middleware('auth')->prefix('tags')->group(function () {
Route::middleware('auth')->prefix('delete')->controller(DeletionController::class)->group(function () {
Route::get('comment/{comment}', 'deleteComment');
Route::get('post/{post}', 'deletePost');
Route::get('post/{post}/tag/{tag}', 'deletePostTag');
Route::get('tag/{tag}', 'deleteTag');
Route::get('group/{tagGroup}', 'deleteTagGroup');
});