BathHacked/energy-sparks

View on GitHub
lib/tasks/deployment/20240530110935_disable_tgp_energy_tariffs.rake

Summary

Maintainability
Test Coverage
namespace :after_party do
  desc 'Deployment task: disable_tgp_energy_tariffs'
  task disable_tgp_energy_tariffs: :environment do
    puts "Running deploy task 'disable_tgp_energy_tariffs'"

    # TGP n3rgy (SMS)
    data_source = DataSource.find_by_id(52)&.update!(load_tariffs: false)

    # Update task as completed.  If you remove the line below, the task will
    # run with every deploy (or every time you call after_party:run).
    AfterParty::TaskRecord
      .create version: AfterParty::TaskRecorder.new(__FILE__).timestamp
  end
end