anthonymidili/Bullhorn

View on GitHub
app/controllers/theme_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ThemeController < ApplicationController
  def update
    if params[:theme].blank?
      cookies.delete(:theme)
    else
      cookies.permanent[:theme] = params[:theme]
    end
    redirect_to(request.referrer || root_path)
  end
end