Files
ocelots/app/controllers/organizations_controller.rb
2012-11-13 15:24:19 +08:00

10 lines
204 B
Ruby

class OrganizationsController < ApplicationController
def index
@organizations = Organisation.all
respond_to do |format|
format.json { render :json => @organizations }
end
end
end