BathHacked/energy-sparks

View on GitHub
app/controllers/schools/inactive_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
85%
module Schools
  class InactiveController < ApplicationController
    load_resource :school

    def show
      if @school.visible?
        redirect_to school_path(@school)
      else
        render :show
      end
    end
  end
end