Class: CacheClear::CacheClearController

Inherits:
ApplicationController show all
Defined in:
app/controllers/cache_clear/cache_clear_controller.rb

Instance Method Summary collapse

Instance Method Details

#clear_cacheObject



3
4
5
6
7
8
9
10
# File 'app/controllers/cache_clear/cache_clear_controller.rb', line 3

def clear_cache
  if ::CacheClear.authorized?(params)
    Rails.cache.clear
    head :ok
  else
    head :unauthorized
  end
end