Class: SolidCacheDashboard::AppearanceController

Inherits:
ApplicationController show all
Defined in:
app/controllers/solid_cache_dashboard/appearance_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#dark_mode?

Instance Method Details

#toggleObject



3
4
5
6
7
# File 'app/controllers/solid_cache_dashboard/appearance_controller.rb', line 3

def toggle
  cookies[:solid_cache_dashboard_dark_mode] = dark_mode? ? "false" : "true"
  
  redirect_back(fallback_location: root_path)
end