1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00
Maybe/lib/tasks/invites.rake

10 lines
250 B
Ruby
Raw Normal View History

namespace :invites do
2024-10-08 12:23:23 -05:00
desc "Create invite code(s). Usage: rake invites:create[count]"
2024-10-08 12:30:28 -05:00
task :create, [ :count ] => :environment do |_, args|
2024-10-08 12:23:23 -05:00
count = (args[:count] || 1).to_i
count.times do
puts InviteCode.generate!
end
end
end