Issue #83 - Project limit

This commit is contained in:
Valera Sizov 2011-10-09 11:15:01 -07:00
parent 9840102651
commit 67f0c62d07
13 changed files with 45 additions and 9 deletions

View file

@ -521,3 +521,7 @@ tbody tr:nth-child(2n) td, tbody tr.even td {
width:400px;
}
}
#user_projects_limit{
width: 60px;
}

View file

@ -21,7 +21,7 @@ class Admin::UsersController < ApplicationController
end
def new
@admin_user = User.new
@admin_user = User.new(:projects_limit => 10)
respond_to do |format|
format.html # new.html.erb

View file

@ -25,6 +25,8 @@ class Project < ActiveRecord::Base
:uniqueness => true,
:length => { :within => 3..12 }
validate :check_limit
before_save :format_code
after_destroy :destroy_gitosis_project
after_save :update_gitosis_project
@ -126,6 +128,12 @@ class Project < ActiveRecord::Base
path ? (tree / path) : tree
end
def check_limit
unless owner.can_create_project?
errors[:base] << ("You can to have #{owner.projects_limit} your own projects")
end
end
def valid_repo?
repo
rescue

View file

@ -5,7 +5,7 @@ class User < ActiveRecord::Base
:recoverable, :rememberable, :trackable, :validatable
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :password, :password_confirmation, :remember_me, :name
attr_accessible :email, :password, :password_confirmation, :remember_me, :name, :projects_limit
has_many :users_projects, :dependent => :destroy
has_many :projects, :through => :users_projects
@ -29,6 +29,10 @@ class User < ActiveRecord::Base
def is_admin?
admin
end
def can_create_project?
projects_limit >= my_own_projects.count
end
end
# == Schema Information
#
@ -49,6 +53,6 @@ end
# updated_at :datetime
# name :string(255)
# admin :boolean default(FALSE), not null
# allowed_create_repo :boolean default(TRUE), not null
# projects_limit :integer
#

View file

@ -30,8 +30,8 @@
= f.check_box :admin
= f.label :admin
.field.prepend-top
= f.check_box :allowed_create_repo, :disabled => true
= f.label :allowed_create_repo
= f.text_field :projects_limit, :class => "small_input"
= f.label :projects_limit
.clear
%br
.actions

View file

@ -10,6 +10,9 @@
%p
%b Admin:
= @admin_user.admin
%p
%b Projects limit:
= @admin_user.projects_limit
.clear
= link_to 'Edit', edit_admin_user_path(@admin_user)

View file

@ -1,4 +1,5 @@
= link_to 'New Project', new_project_path, :class => "lbutton vm"
- if current_user.can_create_project?
= link_to 'New Project', new_project_path, :class => "lbutton vm"
%table.round-borders#projects-list
%tr