Class: Griddler::EmailsController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
app/controllers/griddler/emails_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



2
3
4
5
6
7
# File 'app/controllers/griddler/emails_controller.rb', line 2

def create
  normalized_params.each do |p|
    Griddler::Email.new(p).process
  end
  head :ok
end