mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Hide client secret if app is locked
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
3c00f68bda
commit
788c03ef57
|
@ -52,7 +52,7 @@ class GoogleAuthController extends Controller
|
||||||
|
|
||||||
|
|
||||||
if ($user) {
|
if ($user) {
|
||||||
|
|
||||||
$user->update([
|
$user->update([
|
||||||
'avatar' => $socialUser->avatar,
|
'avatar' => $socialUser->avatar,
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -70,7 +70,13 @@
|
||||||
{{ Form::label('google_client_secret', 'Client Secret') }}
|
{{ Form::label('google_client_secret', 'Client Secret') }}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
{{ Form::text('google_client_secret', old('google_client_secret', $setting->google_client_secret), ['class' => 'form-control','placeholder' => trans('general.example') .'XXXXXXXXXXXX', (config('app.lock_passwords')===true) ? 'disabled': '']) }}
|
|
||||||
|
@if (config('app.lock_passwords')===true)
|
||||||
|
{{ Form::text('google_client_secret', 'XXXXXXXXXXXXXXXXXXXXXXX', ['class' => 'form-control', 'disabled']) }}
|
||||||
|
@else
|
||||||
|
{{ Form::text('google_client_secret', old('google_client_secret', $setting->google_client_secret), ['class' => 'form-control','placeholder' => trans('general.example') .'XXXXXXXXXXXX']) }}
|
||||||
|
@endif
|
||||||
|
|
||||||
{!! $errors->first('google_client_secret', '<span class="alert-msg" aria-hidden="true">:message</span>') !!}
|
{!! $errors->first('google_client_secret', '<span class="alert-msg" aria-hidden="true">:message</span>') !!}
|
||||||
@if (config('app.lock_passwords')===true)
|
@if (config('app.lock_passwords')===true)
|
||||||
<p class="text-warning"><i class="fas fa-lock" aria-hidden="true"></i> {{ trans('general.feature_disabled') }}</p>
|
<p class="text-warning"><i class="fas fa-lock" aria-hidden="true"></i> {{ trans('general.feature_disabled') }}</p>
|
||||||
|
|
Loading…
Reference in a new issue