Generate multiple invites

This commit is contained in:
Josh Pigford
2024-10-08 12:23:23 -05:00
parent 2f6479f058
commit e70d3d1902

View File

@@ -1,6 +1,9 @@
namespace :invites do
desc "Create an invite code"
task create: :environment do
puts InviteCode.generate!
desc "Create invite code(s). Usage: rake invites:create[count]"
task :create, [:count] => :environment do |_, args|
count = (args[:count] || 1).to_i
count.times do
puts InviteCode.generate!
end
end
end