aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/rails
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/rails')
-rw-r--r--app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb2
-rw-r--r--app/controllers/rails/conductor/action_mailbox/reroutes_controller.rb2
-rw-r--r--app/controllers/rails/conductor/base_controller.rb2
3 files changed, 6 insertions, 0 deletions
diff --git a/app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb b/app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb
index 9804f6ec5b..eb96d88691 100644
--- a/app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb
+++ b/app/controllers/rails/conductor/action_mailbox/inbound_emails_controller.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
class Rails::Conductor::ActionMailbox::InboundEmailsController < Rails::Conductor::BaseController
def index
@inbound_emails = ActionMailbox::InboundEmail.order(created_at: :desc)
diff --git a/app/controllers/rails/conductor/action_mailbox/reroutes_controller.rb b/app/controllers/rails/conductor/action_mailbox/reroutes_controller.rb
index 6191bda5e5..c53203049b 100644
--- a/app/controllers/rails/conductor/action_mailbox/reroutes_controller.rb
+++ b/app/controllers/rails/conductor/action_mailbox/reroutes_controller.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
# Rerouting will run routing and processing on an email that has already been, or attempted to be, processed.
class Rails::Conductor::ActionMailbox::ReroutesController < Rails::Conductor::BaseController
def create
diff --git a/app/controllers/rails/conductor/base_controller.rb b/app/controllers/rails/conductor/base_controller.rb
index cfa0b84963..c95a7f3b93 100644
--- a/app/controllers/rails/conductor/base_controller.rb
+++ b/app/controllers/rails/conductor/base_controller.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
# TODO: Move this to Rails::Conductor gem
class Rails::Conductor::BaseController < ActionController::Base
layout "rails/conductor"