Improve zones.json performance

Idk I'm working on a mobile hotspot rn and not including the translations was making this slow, hey may as well fix while we're here right? lol
This commit is contained in:
Matchu 2023-07-28 15:08:54 -07:00 committed by Matchu
parent 6581597d7c
commit 0b1e241158

View file

@ -1,5 +1,5 @@
class ZonesController < ApplicationController
def index
render json: Zone.all
render json: Zone.includes(:translations).all
end
end