BathHacked/energy-sparks

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

Summary

Maintainability
A
0 mins
Test Coverage
module Schools
  class DataEnabledController < ApplicationController
    load_and_authorize_resource :school

    def create
      authorize! :change_data_enabled, @school
      SchoolCreator.new(@school).make_data_enabled!
      redirect_back fallback_location: school_path(@school), notice: "#{@school.name} is now data enabled"
    rescue SchoolCreator::Error => e
      redirect_back fallback_location: school_path(@school), notice: e.message
    end

    def destroy
      authorize! :change_data_enabled, @school
      @school.update!(data_enabled: false)
      redirect_back fallback_location: school_path(@school)
    end
  end
end