aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-01-31 10:23:21 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-01-31 10:23:21 +0900
commit18cc66cef65acef7ef756836136f5b5253993f02 (patch)
tree60c26b8ef5d449059b6fc11ab809ac7cbc6a6cad /actionmailer
parentef7b9b867b3c113bbbc7639b5d760a8f962a683c (diff)
downloadrails-18cc66cef65acef7ef756836136f5b5253993f02.tar.gz
rails-18cc66cef65acef7ef756836136f5b5253993f02.tar.bz2
rails-18cc66cef65acef7ef756836136f5b5253993f02.zip
add default value to `deliver_later_queue_name` option [ci skip]
Diffstat (limited to 'actionmailer')
-rw-r--r--actionmailer/lib/action_mailer/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index c0c030ac3e..f02108a859 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -428,7 +428,7 @@ module ActionMailer
# * <tt>deliveries</tt> - Keeps an array of all the emails sent out through the Action Mailer with
# <tt>delivery_method :test</tt>. Most useful for unit and functional testing.
#
- # * <tt>deliver_later_queue_name</tt> - The name of the queue used with <tt>deliver_later</tt>.
+ # * <tt>deliver_later_queue_name</tt> - The name of the queue used with <tt>deliver_later</tt>. Defaults to +mailers+.
class Base < AbstractController::Base
include DeliveryMethods
include Rescuable