6 lines
94 B
Ruby
6 lines
94 B
Ruby
|
class ZonesController < ApplicationController
|
||
|
def index
|
||
|
render json: Zone.all
|
||
|
end
|
||
|
end
|