mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Removed redirect option
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
aefd330e4e
commit
3fb5188037
|
@ -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');
|
||||
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue