Files
sx-fc/app/controllers/api/restaurant/zones_controller.rb
2017-03-24 21:50:01 +06:30

6 lines
135 B
Ruby

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