BathHacked/energy-sparks

View on GitHub
app/controllers/comparisons/annual_change_in_electricity_out_of_hours_use_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Comparisons
  class AnnualChangeInElectricityOutOfHoursUseController < Shared::AnnualChangeInOutOfHoursUseController
    private

    def key
      :annual_change_in_electricity_out_of_hours_use
    end

    def advice_page_key
      :electricity_out_of_hours
    end

    def model
      Comparison::AnnualChangeInElectricityOutOfHoursUse
    end
  end
end