mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-09 21:42:57 +00:00
7 lines
196 B
PHP
7 lines
196 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('login', 'handleRedirect')->name('login');
|
|
Route::get('callback', 'handleCallback');
|
|
Route::get('logout', 'handleLogout')->name('logout');
|