1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Base -> Mailbox

Won't need Base and can separate routing from execution 👍
This commit is contained in:
David Heinemeier Hansson 2018-09-17 17:01:52 -07:00
parent 82ff0c235b
commit 6600155aee
3 changed files with 3 additions and 3 deletions

View file

@ -3,5 +3,5 @@ require "action_mailroom/engine"
module ActionMailroom
extend ActiveSupport::Autoload
autoload :Base
autoload :Mailbox
end

View file

@ -1,2 +0,0 @@
class ActionMailroom::Base
end

View file

@ -0,0 +1,2 @@
class ActionMailroom::Mailbox
end