Dpalazzari/johari_window_api

View on GitHub
app/controllers/api/v1/assignments_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Api::V1::AssignmentsController < Api::V1::BaseController
  def create
    groups = JSON.parse(request.body.read)
    AssignmentCreator.make_assignments(groups)
    render status: 200
  end
end