mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-09 04:56:21 +10:00
10 lines
204 B
Ruby
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
|