This commit is contained in:
2026-03-07 17:36:07 -06:00
parent 858f902bf1
commit e56f012cb8
2 changed files with 4 additions and 1 deletions

View File

@@ -64,6 +64,10 @@ AWS_USE_PATH_STYLE_ENDPOINT=false
VITE_APP_NAME="${APP_NAME}"
EVEONLINE_CLIENT_ID=replace_this_with_eve_developer_client_id
EVEONLINE_SECRET_KEY=replace_this_with_eve_developer_secret_key
EVEONLINE_REDIRECT_URI=replace_this_with_eve_developer_redirect_uri
JWT_SECRET=replace_this_with_a_long_random_secret
JWT_TTL=3600
JWT_ISSUER="${APP_NAME}"

View File

@@ -4,7 +4,6 @@ namespace App\Http\Controllers\Auth;
//Library
use App\Http\Controllers\Controller;
use App\Models\Auth\User;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;