wahyd4/ocelots

View on GitHub
app/controllers/organizations_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class OrganizationsController < ApplicationController
  def index
    @organizations = Organisation.all
    respond_to do |format|
      format.json  { render :json => @organizations }
    end
  end

end