Add Rake task for generating wallets
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
Basti 2021-11-22 16:22:53 -06:00
parent e2ee33a1da
commit 4f20cd0d0a
Signed by untrusted user: basti
GPG Key ID: 9F88009D31D99C72

8
lib/tasks/lndhub.rake Normal file
View File

@ -0,0 +1,8 @@
namespace :lndhub do
desc "Generate wallets for all users"
task :generate_wallets => :environment do |t, args|
User.all.each do |user|
CreateLndhubWalletJob.perform_later(user)
end
end
end