BathHacked/energy-sparks

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Comparisons
  class ChangeInGasSinceLastYearController < Shared::ChangeInHeatingSinceLastYearController
    private

    def key
      :change_in_gas_since_last_year
    end

    def model
      Comparison::ChangeInGasSinceLastYear
    end
  end
end