brightin/recoil

View on GitHub
app/controllers/recoil/notifications_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Recoil
  class NotificationsController < ActionController::Base
    def index
      Message.for(JSON.parse(request.raw_post)).process!
      head :no_content
    end
  end
end