Sha256: aa934349b5cc69b2e664000f70fae7b3663b4f6c69b363af92fbe693c1e5313f

Contents?: true

Size: 1.68 KB

Versions: 39

Compression:

Stored size: 1.68 KB

Contents

# frozen_string_literal: true

Rails.application.routes.draw do
  scope "/rails/action_mailbox", module: "action_mailbox/ingresses" do
    post "/postmark/inbound_emails" => "postmark/inbound_emails#create", as: :rails_postmark_inbound_emails
    post "/relay/inbound_emails"    => "relay/inbound_emails#create",    as: :rails_relay_inbound_emails
    post "/sendgrid/inbound_emails" => "sendgrid/inbound_emails#create", as: :rails_sendgrid_inbound_emails

    # Mandrill checks for the existence of a URL with a HEAD request before it will create the webhook.
    get "/mandrill/inbound_emails"  => "mandrill/inbound_emails#health_check", as: :rails_mandrill_inbound_health_check
    post "/mandrill/inbound_emails" => "mandrill/inbound_emails#create",       as: :rails_mandrill_inbound_emails

    # Mailgun requires that a webhook's URL end in 'mime' for it to receive the raw contents of emails.
    post "/mailgun/inbound_emails/mime" => "mailgun/inbound_emails#create", as: :rails_mailgun_inbound_emails
  end

  # 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, only: %i[index new show create]
    get  "inbound_emails/sources/new", to: "inbound_emails/sources#new", as: :new_rails_conductor_inbound_email_source
    post "inbound_emails/sources", to: "inbound_emails/sources#create", as: :rails_conductor_inbound_email_sources

    post ":inbound_email_id/reroute" => "reroutes#create", as: :rails_conductor_inbound_email_reroute
    post ":inbound_email_id/incinerate" => "incinerates#create", as: :rails_conductor_inbound_email_incinerate
  end
end

Version data entries

39 entries across 39 versions & 5 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/actionmailbox-7.1.3.4/config/routes.rb
actionmailbox-8.0.1 config/routes.rb
actionmailbox-8.0.0.1 config/routes.rb
actionmailbox-7.2.2.1 config/routes.rb
actionmailbox-7.1.5.1 config/routes.rb
actionmailbox-8.0.0 config/routes.rb
actionmailbox-7.2.2 config/routes.rb
actionmailbox-7.1.5 config/routes.rb
actionmailbox-8.0.0.rc2 config/routes.rb
actionmailbox-7.2.1.2 config/routes.rb
actionmailbox-7.1.4.2 config/routes.rb
actionmailbox-8.0.0.rc1 config/routes.rb
actionmailbox-7.2.1.1 config/routes.rb
actionmailbox-7.1.4.1 config/routes.rb
actionmailbox-8.0.0.beta1 config/routes.rb
omg-actionmailbox-8.0.0.alpha9 config/routes.rb
omg-actionmailbox-8.0.0.alpha8 config/routes.rb
omg-actionmailbox-8.0.0.alpha7 config/routes.rb
omg-actionmailbox-8.0.0.alpha4 config/routes.rb
omg-actionmailbox-8.0.0.alpha3 config/routes.rb