Skip to content
Snippets Groups Projects
auto.rake 365 B
Newer Older
Arnaud Levy's avatar
Arnaud Levy committed
namespace :auto do
Arnaud Levy's avatar
Arnaud Levy committed

Arnaud Levy's avatar
Arnaud Levy committed
  desc 'Update publications from HAL for all researchers'
Arnaud Levy's avatar
Arnaud Levy committed
  task update_hal: :environment do
    Research::Hal.update_from_api!
Arnaud Levy's avatar
Arnaud Levy committed
  end
Arnaud Levy's avatar
Arnaud Levy committed

Arnaud Levy's avatar
Arnaud Levy committed
  desc 'Resave every website to enable publications in the future'
  task save_and_sync_websites: :environment do
    Communication::Website.find_each do |website|
Arnaud Levy's avatar
Arnaud Levy committed
      website.save_and_sync
Arnaud Levy's avatar
Arnaud Levy committed
end