mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-09 21:42:57 +00:00
add users page, full screen image preview, footer
Some checks are pending
Docker / build (push) Waiting to run
Some checks are pending
Docker / build (push) Waiting to run
This commit is contained in:
parent
7ec9c4bc9d
commit
1442dbfa60
20 changed files with 202 additions and 32 deletions
|
|
@ -4,6 +4,7 @@ use App\Http\Controllers\DeletionController;
|
|||
use App\Livewire\App\Home as AppHome;
|
||||
use App\Livewire\Pages\Profile as ProfilePage;
|
||||
use App\Livewire\Pages\Upload as UploadPage;
|
||||
use App\Livewire\Pages\Users as UsersPage;
|
||||
use App\Livewire\Posts\Index as PostsPage;
|
||||
use App\Livewire\Posts\Edit as EditPost;
|
||||
use App\Livewire\Posts\View as ViewPost;
|
||||
|
|
@ -19,6 +20,7 @@ Route::get('/', AppHome::class)->name('home');
|
|||
Route::middleware('auth')->group(function () {
|
||||
Route::get('/upload', UploadPage::class)->name('upload');
|
||||
Route::get('/profiles/{user}', ProfilePage::class);
|
||||
Route::get('/users', UsersPage::class)->name('users');
|
||||
});
|
||||
|
||||
// Post routes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue