6 lines
135 B
Ruby
6 lines
135 B
Ruby
class Api::Restaurant::ZonesController < ActionController::API
|
|
def index
|
|
render json: Zone.where("is_active = true")
|
|
end
|
|
end
|