mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
19 lines
492 B
Ruby
19 lines
492 B
Ruby
# frozen_string_literal: true
|
|
|
|
# OpenLab Projects tasks
|
|
namespace :fablab do
|
|
namespace :openlab do
|
|
desc 'bulk and export projects to openlab'
|
|
task bulk_export: :environment do
|
|
if Rails.application.secrets.openlab_app_secret.present?
|
|
Project.find_each do |project|
|
|
project.openlab_create
|
|
puts '-> Done'
|
|
end
|
|
else
|
|
warn "Rails.application.secrets.openlab_app_secret not present. Export can't be done."
|
|
end
|
|
end
|
|
end
|
|
end
|