1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/config/routes.rb
David Heinemeier Hansson 0cb3245b4d Use rails scope by default
2018-09-18 16:13:17 -07:00

7 lines
206 B
Ruby

# frozen_string_literal: true
Rails.application.routes.draw do
scope "rails/action_mailroom" do
post "/inbound_emails" => "action_mailroom/inbound_emails#create", as: :rails_inbound_emails
end
end