summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/models/invite_code.rb2
-rw-r--r--lib/tasks/invite_code.rake4
2 files changed, 5 insertions, 1 deletions
diff --git a/app/models/invite_code.rb b/app/models/invite_code.rb
index 6fcc427..cee4095 100644
--- a/app/models/invite_code.rb
+++ b/app/models/invite_code.rb
@@ -19,7 +19,7 @@ class InviteCode < CouchRest::Model::Base
end
super(attributes, options)
-
+
write_attribute('invite_code', attributes[:id]) if new?
end
diff --git a/lib/tasks/invite_code.rake b/lib/tasks/invite_code.rake
index fa397bb..1654599 100644
--- a/lib/tasks/invite_code.rake
+++ b/lib/tasks/invite_code.rake
@@ -11,6 +11,10 @@ task :generate_invites, [:n, :u] => :environment do |task, args|
max_uses = args.u
end
+ def generate_invite
+ Base64.encode64(SecureRandom.random_bytes).downcase.gsub(/[0oil1+_\/]/,'')[0..7].scan(/..../).join('-')
+ end
+
codes.times do |x|
x = InviteCode.new
x.max_uses = max_uses