aboutsummaryrefslogtreecommitdiffstats
path: root/config/routes.rb
blob: 733f13726226536049a170df2ffe23cfed66d963 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

Rails.application.routes.draw do
  post "/rails/action_mailbox/inbound_emails" => "action_mailbox/inbound_emails#create", as: :rails_inbound_emails

  # TODO: Should these be mounted within the engine only?
  scope "rails/conductor/action_mailbox/", module: "rails/conductor/action_mailbox" do
    resources :inbound_emails, as: :rails_conductor_inbound_emails
    post ":inbound_email_id/reroute" => "reroutes#create", as: :rails_conductor_inbound_email_reroute
  end
end