From 93aee27cd95bd2e79353d3041238292c80560669 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 29 Jul 2013 16:22:51 -0500 Subject: [PATCH] Add expire option to reminder config. --- app/config/auth.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/config/auth.php b/app/config/auth.php index 62ea9c3d..17736ff1 100644 --- a/app/config/auth.php +++ b/app/config/auth.php @@ -56,7 +56,11 @@ return array( 'reminder' => array( - 'email' => 'emails.auth.reminder', 'table' => 'password_reminders', + 'email' => 'emails.auth.reminder', + + 'table' => 'password_reminders', + + 'expire' => 60, ),