aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/rails/conductor/action_mailbox/reroutes_controller.rb
blob: 226116a3d62b76b267a35ddeb87a475e165c0cbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Rails::Conductor::ActionMailbox::ReroutesController < Rails::Conductor::BaseController
  def create
    inbound_email = ActionMailbox::InboundEmail.find(params[:inbound_email_id])
    reroute inbound_email

    redirect_to main_app.rails_conductor_inbound_email_url(inbound_email)
  end

  private
    def reroute(inbound_email)
      inbound_email.pending!
      inbound_email.route_later
    end
end