summaryrefslogtreecommitdiff
path: root/app/models/invite_code.rb
diff options
context:
space:
mode:
authorankonym <ankonym@gmail.com>2015-10-06 13:27:32 +0200
committerankonym <ankonym@gmail.com>2015-10-06 13:27:32 +0200
commitda9608a906d4369afb70e042069e219bc2e2d282 (patch)
treec2ae11cfa08634a758938eb7fb6ae9c55cc1378f /app/models/invite_code.rb
parent6f09343e85ab23c4d81f827bbd47a720f3e2cf7b (diff)
Integrated feedback on multi-invite codes
Removing some superfluous code, mostly, and structuring tests better.
Diffstat (limited to 'app/models/invite_code.rb')
-rw-r--r--app/models/invite_code.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/models/invite_code.rb b/app/models/invite_code.rb
index 0086804..13c3a39 100644
--- a/app/models/invite_code.rb
+++ b/app/models/invite_code.rb
@@ -4,14 +4,13 @@ class InviteCode < CouchRest::Model::Base
use_database 'invite_codes'
property :invite_code, String, :read_only => true
property :invite_count, Integer, :default => 0, :accessible => true
- property :invite_max_uses, Integer, :default => 1, :accessible => true
+ property :max_uses, Integer, :default => 1
timestamps!
design do
view :by_invite_code
view :by_invite_count
- view :by_invite_max_uses
end
def initialize(attributes = {}, options = {})