mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 21:59:38 +02:00
7 lines
128 B
Ruby
7 lines
128 B
Ruby
|
namespace :invites do
|
||
|
desc "Create an invitation code"
|
||
|
task create: :environment do
|
||
|
puts InviteCode.generate!
|
||
|
end
|
||
|
end
|