Browse Source

added config for password reminders.

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

+ 18 - 1
app/config/auth.php

@@ -43,4 +43,21 @@ return array(
 
 
 	'table' => 'users',
 	'table' => 'users',
 
 
-);
+	/*
+	|--------------------------------------------------------------------------
+	| Password Reminder Settings
+	|--------------------------------------------------------------------------
+	|
+	| Here you may set the settings for password reminders, including a view
+	| that should be used as your password reminder e-mail. You will also
+	| be able to set the name of the table that holds the reset tokens.
+	|
+	*/
+
+	'reminder' => array(
+
+		'email' => 'auth.password', 'table' => 'password_reminders',
+
+	),
+
+);