Files
sx-fc/app/controllers/api/restaurant/zones_controller.rb
2017-04-03 21:26:22 +06:30

7 lines
136 B
Ruby

class Api::Restaurant::ZonesController < ActionController::API
def index
render json: Zone.where("is_active = true")
end
end