Add some rdocs to MailHandler#dispatch_to_default

This commit is contained in:
Eric Davis 2011-02-14 15:50:22 -08:00
parent a47ad014f9
commit 151a142c44
1 changed files with 4 additions and 0 deletions

View File

@ -114,6 +114,10 @@ class MailHandler < ActionMailer::Base
false
end
# Dispatch the mail to the default method handler, receive_issue
#
# This can be overridden or patched to support handling other incoming
# email types
def dispatch_to_default
receive_issue
end