Controller like so:
def catalog
#Makes the request pause 1.5 seconds
sleep 1.5
...
end
Even better: only add the sleep for the dev environment.
Controller like so:
def catalog
#Makes the request pause 1.5 seconds
sleep 1.5
...
end
Even better: only add the sleep for the dev environment.