From 3fb51880375a54d1b6baacece70baff584810da2 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 10 May 2023 00:54:46 -0700 Subject: [PATCH] Removed redirect option Signed-off-by: snipe --- app/Models/Setting.php | 1 - .../2023_05_10_001836_add_google_auth_to_settings.php | 2 -- 2 files changed, 3 deletions(-) diff --git a/app/Models/Setting.php b/app/Models/Setting.php index 775ada58fd..bc6fb75fb4 100755 --- a/app/Models/Setting.php +++ b/app/Models/Setting.php @@ -90,7 +90,6 @@ class Setting extends Model 'google_login', 'google_client_id', 'google_client_secret', - 'google_redirect', ]; /** diff --git a/database/migrations/2023_05_10_001836_add_google_auth_to_settings.php b/database/migrations/2023_05_10_001836_add_google_auth_to_settings.php index 5a2bd6a9fa..7f15e0d6e1 100644 --- a/database/migrations/2023_05_10_001836_add_google_auth_to_settings.php +++ b/database/migrations/2023_05_10_001836_add_google_auth_to_settings.php @@ -17,7 +17,6 @@ class AddGoogleAuthToSettings extends Migration $table->boolean('google_login')->nullable()->default(0); $table->string('google_client_id')->nullable()->default(null); $table->string('google_client_secret')->nullable()->default(null); - $table->string('google_redirect')->nullable()->default(null); }); } @@ -32,7 +31,6 @@ class AddGoogleAuthToSettings extends Migration $table->dropColumn('google_login'); $table->dropColumn('google_client_id'); $table->dropColumn('google_client_secret'); - $table->dropColumn('google_redirect'); }); }