From df6021a26d1c8812fe311b89cf2e8b9e9073daf2 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 30 Jan 2013 22:42:27 -0600 Subject: [PATCH] added config for password reminders. --- app/config/auth.php | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/app/config/auth.php b/app/config/auth.php index 3eceea3c..f39e3259 100644 --- a/app/config/auth.php +++ b/app/config/auth.php @@ -43,4 +43,21 @@ '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', + + ), + +); \ No newline at end of file