From d3500b0ce949faca1346ef9524aded34a1b6f2da Mon Sep 17 00:00:00 2001 From: Connor Turland Date: Fri, 31 Jan 2014 11:58:32 -0500 Subject: [PATCH] adjusted user model to not prevent sign ups --- app/models/user.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/user.rb b/app/models/user.rb index e655dd71..7f113aa5 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -11,7 +11,7 @@ has_many :mappings devise :database_authenticatable, :recoverable, :rememberable, :trackable, :registerable - attr_accessible :name, :email, :password, :password_confirmation, :remember_me + attr_accessible :name, :email, :password, :password_confirmation, :code, :joinedwithcode, :remember_me serialize :settings, UserPreference