Browse Source

Add expire option to reminder config.

Taylor Otwell 11 years ago
parent
commit
93aee27cd9
1 changed files with 5 additions and 1 deletions
  1. 5 1
      app/config/auth.php

+ 5 - 1
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,
 
 	),