mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
31 lines
930 B
Ruby
31 lines
930 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 Setting.get('openlab_app_id').present? && Setting.get('openlab_app_secret').present?
|
|
Project.find_each do |project|
|
|
project.openlab_create
|
|
puts '-> Done'
|
|
end
|
|
else
|
|
warn "openlab_app_id or openlab_app_secret was not configured. Export can't be done."
|
|
end
|
|
end
|
|
|
|
desc 'bulk update projects to openlab'
|
|
task bulk_update: :environment do
|
|
if Setting.get('openlab_app_id').present? && Setting.get('openlab_app_secret').present?
|
|
Project.find_each do |project|
|
|
project.openlab_update
|
|
puts '-> Done'
|
|
end
|
|
else
|
|
warn "openlab_app_id or openlab_app_secret was not configured. Update can't be done."
|
|
end
|
|
end
|
|
end
|
|
end
|