summaryrefslogtreecommitdiff
path: root/app/controllers/application_controller.rb
blob: 4be24bd6174f8573d9ed176ef016f517377f14b5 (plain)
1
2
3
4
5
6
7
8
9
class ApplicationController < ActionController::Base
  around_action :cache_legacy_connections

  private

  def cache_legacy_connections
    LegacyRecord.connection.cache { yield }
  end
end