mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
Remove search for now, increase upload filesize limits
This commit is contained in:
parent
1442dbfa60
commit
cb086c4708
21 changed files with 117 additions and 244 deletions
|
|
@ -10,6 +10,7 @@ use App\Livewire\Posts\Edit as EditPost;
|
|||
use App\Livewire\Posts\View as ViewPost;
|
||||
use App\Livewire\Tags\Index as TagsIndexPage;
|
||||
use App\Livewire\Tags\Groups as TagGroupsPage;
|
||||
use App\Livewire\Tags\View as TagViewPage;
|
||||
use App\Models\Post;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Illuminate\Support\Facades\Storage;
|
||||
|
|
@ -36,6 +37,7 @@ Route::middleware('auth')->prefix('posts')->group(function () {
|
|||
// Tag routes
|
||||
Route::middleware('auth')->prefix('tags')->group(function () {
|
||||
Route::get('/', TagsIndexPage::class)->name('tags.home');
|
||||
Route::get('/view/{tag}', TagViewPage::class)->name('tags.view');
|
||||
Route::get('/groups', TagGroupsPage::class)->name('tags.groups');
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue