Removed redirect option

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe
2023-05-10 00:54:46 -07:00
parent aefd330e4e
commit 3fb5188037
2 changed files with 0 additions and 3 deletions
-1
View File
@@ -90,7 +90,6 @@ class Setting extends Model
'google_login',
'google_client_id',
'google_client_secret',
'google_redirect',
];
/**
@@ -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');
});
}