- disabled notification after backup

- fix incorrect password in sign in form
This commit is contained in:
Peter Papp
2021-04-10 09:06:05 +02:00
parent d5e371f8d6
commit 452da6c6b4
2 changed files with 3 additions and 3 deletions

View File

@@ -165,14 +165,14 @@ return [
*/ */
'notifiable' => \Spatie\Backup\Notifications\Notifiable::class, 'notifiable' => \Spatie\Backup\Notifications\Notifiable::class,
'mail' => [ /*'mail' => [
'to' => 'your@example.com', 'to' => 'your@example.com',
'from' => [ 'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'), 'name' => env('MAIL_FROM_NAME', 'Example'),
], ],
], ],*/
'slack' => [ 'slack' => [
'webhook_url' => '', 'webhook_url' => '',

View File

@@ -186,7 +186,7 @@
}) })
.catch(error => { .catch(error => {
if (error.response.status == 400) { if (error.response.status == 422) {
this.$refs.sign_in.setErrors({ this.$refs.sign_in.setErrors({
'User Password': [this.$t('validation_errors.incorrect_password')] 'User Password': [this.$t('validation_errors.incorrect_password')]