AgileVentures/LocalSupport

View on GitHub
app/controllers/invitations_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class InvitationsController < ApplicationController
  before_action :authorize

  # xhr only, tested in a request spec
  def create
    render json: ::BatchInviteJob.new(
      params, current_user
    ).run.to_json
  end
end