diff options
| author | Valery Sizov <vsv2711@gmail.com> | 2012-01-03 23:39:03 +0200 |
|---|---|---|
| committer | Valery Sizov <vsv2711@gmail.com> | 2012-01-03 23:39:03 +0200 |
| commit | 212f400d678d75068ae1a5c57110f273464e6ec1 (patch) | |
| tree | a397e04762cb23facc294f8c1ea1132563ab59c3 /app/models/user.rb | |
| parent | 8d7aaf0e5501c472504467b9252dd5bde14a98c8 (diff) | |
| download | gitlab-ce-212f400d678d75068ae1a5c57110f273464e6ec1.tar.gz | |
fix bug #322
Diffstat (limited to 'app/models/user.rb')
| -rw-r--r-- | app/models/user.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index 8b136de90cf..a13a6f77870 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -34,6 +34,11 @@ class User < ActiveRecord::Base :foreign_key => :assignee_id, :dependent => :destroy + validates :projects_limit, + :presence => true, + :numericality => {:greater_than_or_equal_to => 0} + + before_create :ensure_authentication_token alias_attribute :private_token, :authentication_token scope :not_in_project, lambda { |project| where("id not in (:ids)", :ids => project.users.map(&:id) ) } @@ -82,5 +87,6 @@ end # linkedin :string(255) default(""), not null # twitter :string(255) default(""), not null # authentication_token :string(255) +# dark_scheme :boolean default(FALSE), not null # |
