Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DougPuchalski committed Jun 18, 2012
1 parent 549f109 commit 01064f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/sendgrid_postback/event_receiver.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ module EventReceiver
# Serialize if using ActiveRecord
attr_accessor :sendgrid_events
attr_accessor :sendgrid_state

def post_sendgrid_event event_data
SendgridPostaback.logger.info "Posted event data #{event_data.inspect}"
SendgridPostback.logger.info "Posted event data #{event_data.inspect}"
sendgrid_events ||= []
sendgrid_events << event_data
sendgrid_state = Event.sorted(sendgrid_events).last['event']
after_create_sendgrid_event(event_data)
end

# Override hook as necessary
def after_create_sendgrid_event(event_data)
end

end

end

0 comments on commit 01064f5

Please sign in to comment.