aboutsummaryrefslogtreecommitdiffstats
path: root/test/dummy
diff options
context:
space:
mode:
Diffstat (limited to 'test/dummy')
-rw-r--r--test/dummy/app/mailboxes/application_mailbox.rb3
-rw-r--r--test/dummy/config/environments/production.rb3
2 files changed, 6 insertions, 0 deletions
diff --git a/test/dummy/app/mailboxes/application_mailbox.rb b/test/dummy/app/mailboxes/application_mailbox.rb
index 47fb2017d6..be51eb3639 100644
--- a/test/dummy/app/mailboxes/application_mailbox.rb
+++ b/test/dummy/app/mailboxes/application_mailbox.rb
@@ -1,2 +1,5 @@
+# frozen_string_literal: true
+
class ApplicationMailbox < ActionMailbox::Base
+ # routing /something/i => :somewhere
end
diff --git a/test/dummy/config/environments/production.rb b/test/dummy/config/environments/production.rb
index 2aaa79f620..1731582220 100644
--- a/test/dummy/config/environments/production.rb
+++ b/test/dummy/config/environments/production.rb
@@ -1,4 +1,7 @@
Rails.application.configure do
+ # Prepare the ingress controller used to receive mail
+ # config.action_mailbox.ingress = :amazon
+
# Verifies that versions and hashed value of the package contents in the project's package.json
config.webpacker.check_yarn_integrity = false
# Settings specified here will take precedence over those in config/application.rb.