Add rake task for creating invite codes

This commit is contained in:
Jose Farias
2024-02-02 18:02:46 -06:00
parent b3a792c47d
commit 6a4ab5664d
2 changed files with 6 additions and 0 deletions

View File

6
lib/tasks/invites.rake Normal file
View File

@@ -0,0 +1,6 @@
namespace :invites do
desc "Create an invitation code"
task create: :environment do
puts InviteCode.generate!
end
end