From 9fd6e0840043da8d735cca009c703a6223bd7c36 Mon Sep 17 00:00:00 2001 From: Yuan Chiu Date: Wed, 15 Aug 2018 00:36:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9config/auth.php:=20=E5=BF=98?= =?UTF-8?q?=E8=A8=98=E5=AF=86=E7=A2=BC=E7=9A=84=E8=B3=87=E6=96=99=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/auth.php | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/config/auth.php b/config/auth.php index bef8f3e..a276272 100644 --- a/config/auth.php +++ b/config/auth.php @@ -131,9 +131,24 @@ return [ */ 'passwords' => [ - 'users' => [ - 'provider' => 'users', - 'table' => 'password_resets', + // 'users' => [ + // 'provider' => 'users', + // 'table' => 'password_resets', + // 'expire' => 60, + // ], + 'receivers' => [ + 'provider' => 'receivers', + 'table' => 'password_resets_for_receiver', + 'expire' => 60, + ], + 'caseBuilders' => [ + 'provider' => 'caseBuilders', + 'table' => 'password_resets_for_casebuilder', + 'expire' => 60, + ], + 'admins' => [ + 'provider' => 'admins', + 'table' => 'password_resets_for_admin', 'expire' => 60, ], ],